* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HERO SLIDER - FULLSCREEN */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 72px);
    margin-top: 72px;
    overflow: hidden;
}

/* SITE HEADER - BELI FIKSNI */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    height: 72px;
    display: flex;
    align-items: center;
}
.site-header .container { width: 100%; }

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO - LEVO */
.logo {
    flex: 0 0 auto;
}

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

.logo-img {
    height: 55px; /* ← PROMENI OVU VREDNOST ZA LOGO */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.logo .yellow {
    color: #FFD700;
}

/* MENI - CENTAR */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Hamburger dugme - skriveno na desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #FFD700;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.nav-menu li a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    transition: 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #1a3a8f;
}

/* KONTAKT DUGME - DESNO */
.header-cta {
    flex: 0 0 auto;
}

.btn-contact {
    background-color: #FFD700;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

/* DARK OVERLAY PREKO SLAJDERA */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    overflow: hidden;
}

/* Žuta magla uklonjena */

/* GEOMETRIJSKA MREŽA - SVG network pattern kao na slici */
.slider-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='800' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E .line %7B stroke: rgba(100,100,100,0.3); stroke-width: 0.8; %7D .dot %7B fill: rgba(120,120,120,0.6); %7D %3C/style%3E%3C/defs%3E%3C!-- Linije --%3E%3Cline class='line' x1='80' y1='100' x2='220' y2='180'/%3E%3Cline class='line' x1='220' y1='180' x2='380' y2='120'/%3E%3Cline class='line' x1='380' y1='120' x2='520' y2='200'/%3E%3Cline class='line' x1='520' y1='200' x2='680' y2='140'/%3E%3Cline class='line' x1='150' y1='80' x2='280' y2='160'/%3E%3Cline class='line' x1='280' y1='160' x2='420' y2='100'/%3E%3Cline class='line' x1='420' y1='100' x2='580' y2='180'/%3E%3Cline class='line' x1='100' y1='240' x2='240' y2='320'/%3E%3Cline class='line' x1='240' y1='320' x2='400' y2='280'/%3E%3Cline class='line' x1='400' y1='280' x2='560' y2='360'/%3E%3Cline class='line' x1='560' y1='360' x2='720' y2='300'/%3E%3Cline class='line' x1='160' y1='380' x2='320' y2='440'/%3E%3Cline class='line' x1='320' y1='440' x2='480' y2='400'/%3E%3Cline class='line' x1='480' y1='400' x2='640' y2='480'/%3E%3Cline class='line' x1='80' y1='100' x2='150' y2='80'/%3E%3Cline class='line' x1='220' y1='180' x2='280' y2='160'/%3E%3Cline class='line' x1='380' y1='120' x2='420' y2='100'/%3E%3Cline class='line' x1='520' y1='200' x2='580' y2='180'/%3E%3Cline class='line' x1='100' y1='240' x2='80' y2='100'/%3E%3Cline class='line' x1='240' y1='320' x2='220' y2='180'/%3E%3Cline class='line' x1='400' y1='280' x2='380' y2='120'/%3E%3Cline class='line' x1='560' y1='360' x2='520' y2='200'/%3E%3C!-- Tackice --%3E%3Ccircle class='dot' cx='80' cy='100' r='3'/%3E%3Ccircle class='dot' cx='150' cy='80' r='2.5'/%3E%3Ccircle class='dot' cx='220' cy='180' r='3'/%3E%3Ccircle class='dot' cx='280' cy='160' r='2'/%3E%3Ccircle class='dot' cx='380' cy='120' r='3'/%3E%3Ccircle class='dot' cx='420' cy='100' r='2.5'/%3E%3Ccircle class='dot' cx='520' cy='200' r='3'/%3E%3Ccircle class='dot' cx='580' cy='180' r='2'/%3E%3Ccircle class='dot' cx='680' cy='140' r='2.5'/%3E%3Ccircle class='dot' cx='100' cy='240' r='3'/%3E%3Ccircle class='dot' cx='240' cy='320' r='2.5'/%3E%3Ccircle class='dot' cx='400' cy='280' r='3'/%3E%3Ccircle class='dot' cx='560' cy='360' r='2'/%3E%3Ccircle class='dot' cx='720' cy='300' r='2.5'/%3E%3Ccircle class='dot' cx='160' cy='380' r='3'/%3E%3Ccircle class='dot' cx='320' cy='440' r='2.5'/%3E%3Ccircle class='dot' cx='480' cy='400' r='2'/%3E%3Ccircle class='dot' cx='640' cy='480' r='3'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 2;
}

@keyframes fogMove {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* SLAJDER CONTAINER */
.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-color: #000;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    max-width: 720px;
    padding: 0 20px;
}


.slide-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.8rem;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 800;
    white-space: nowrap;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-yellow {
    color: #FFD700;
}


.slide-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    color: #d0d0d0;
    margin-bottom: 36px;
    font-weight: 400;
    letter-spacing: 0;
}

/* VIDEO NA DESNOJ STRANI */
.slide-video {
    position: absolute;
    right: 0;
    top: 0;
    width: 42%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.slide-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
}

/* DUGME U SLAJDERU */
.btn {
    display: inline-block;
    background-color: #FFD700;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

.btn:hover {
    background-color: transparent;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* NAVIGACIONI DUGMIĆI SLAJDERA */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 215, 0, 0.3);
    color: #fff;
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background-color: rgba(255, 215, 0, 0.7);
    border-color: #FFD700;
}

.slider-btn.prev {
    left: 40px;
}

.slider-btn.next {
    right: 40px;
}

/* INDIKATORI (TAČKICE) */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background-color: #FFD700;
    border-color: #FFD700;
    transform: scale(1.3);
}

.dot:hover {
    background-color: rgba(255, 215, 0, 0.7);
}

/* RESPONSIVE - TABLET */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 20px;
        padding: 12px 25px;
    }

    .nav-menu li a {
        font-size: 16px;
    }

    .slide-content h2 {
        font-size: 3rem;
    }
    
    .slide-video {
        width: 40%;
        height: 60vh;
    }
}

/* RESPONSIVE - MALI TABLET */
@media (max-width: 900px) {
    .header-overlay {
        padding: 20px 0;
    }

    .container {
        padding: 0 20px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        flex: 0 0 auto;
        text-align: left;
    }

    .logo-img {
        height: 44px;
    }

    .main-nav {
        order: 3;
        flex: 0 0 100%;
    }

    /* Prikaži hamburger */
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Sakrij meni po defaultu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        flex-direction: column;
        gap: 0;
        padding: 100px 30px 30px;
        background-color: rgba(0, 0, 0, 0.98);
        border-radius: 0;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .nav-menu li a {
        font-size: 16px;
        display: block;
    }

    .header-cta {
        flex: 0 0 auto;
        order: 2;
        margin-left: auto;
        margin-right: 70px;
    }

    .btn-contact {
        padding: 10px 24px;
        font-size: 13px;
    }

    .slide {
        padding: 40px 5%;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-video {
        width: 45%;
        height: 50vh;
    }
}

/* RESPONSIVE - MOBILNI */
@media (max-width: 768px) {
    .header-overlay {
        padding: 15px 0;
        background: rgba(0, 0, 0, 0.9);
    }

    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .logo {
        order: 1;
        flex: 0 0 auto;
    }

    .logo-img {
        height: 40px;
    }

    .header-cta {
        order: 2;
        margin-right: 50px;
        margin-left: 0;
    }

    .btn-contact {
        padding: 8px 20px;
        font-size: 12px;
        margin-top: 0;
    }

    .main-nav {
        order: 3;
        flex: 0 0 auto;
    }

    .hamburger {
        right: 15px;
    }

    .nav-menu {
        width: 250px;
        padding: 80px 20px 30px;
    }

    .nav-menu li {
        padding: 12px 0;
    }

    .nav-menu li a {
        font-size: 15px;
    }

    .slide {
        flex-direction: column;
        justify-content: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .slide-content {
        text-align: center;
        max-width: 100%;
        padding: 20px;
    }

    .slide-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .slide-video {
        width: 100%;
        height: 35vh;
        margin-top: 0;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* RESPONSIVE - VRLO MALI MOBILNI */
@media (max-width: 480px) {
    .header-overlay {
        padding: 10px 0;
    }

    .logo-img {
        height: 36px;
    }

    .header-cta {
        margin-right: 45px;
    }

    .btn-contact {
        padding: 6px 16px;
        font-size: 11px;
    }

    .nav-menu {
        width: 220px;
    }

    .nav-menu li a {
        font-size: 14px;
    }

    .slide-content h2 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slide-video {
        height: 30vh;
    }
}





.btn-contact {
    display: inline-block;
    padding: 12px 28px;
    margin-top: 20px;
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-contact:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-signin {
    padding: 13px 32px;
    background: #1a3a8f;
    color: #fff;
    border: none;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-signin:hover { background: #15307a; }

.btn-signup {
    padding: 13px 32px;
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-signup:hover { background: #f0c800; }
/* ===== NOVI HERO ELEMENTI ===== */
.btn-start {
    display: inline-block;
    background-color: #FFD700;
    color: #1a1a1a;
    padding: 18px 60px;
    text-decoration: none;
    font-size: 1.26rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}
.btn-start:hover {
    background-color: #f0c800;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,215,0,0.35);
}

.hero-bottom-info {
    position: absolute;
    bottom: 50px;
    left: 6%;
    z-index: 10;
}
.tagline-white {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 3px;
}
.tagline-yellow {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}
.app-store-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
}
.store-button img {
    height: 55px;
    width: auto;
    border: none;
    border-radius: 10px;
    background: rgba(0,0,0,0.3);
}
.store-button:last-child img {
    height: 80px;
}
.store-button:hover img { opacity: 0.85; }

/* Hamburger na belom headeru */
@media (max-width: 900px) {
    .site-header .hamburger { display: flex; }
    .site-header .hamburger span { background-color: #1a1a1a; }
    .site-header .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh; width: 280px;
        flex-direction: column;
        gap: 0;
        padding: 90px 30px 30px;
        background: rgba(255,255,255,0.98);
        border-radius: 0;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    }
    .site-header .nav-menu.active { right: 0; }
    .site-header .nav-menu li {
        width: 100%; text-align: center;
        padding: 14px 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
}
@media (min-width: 901px) { .hamburger { display: none !important; } }
@media (max-width: 768px) {
    .slide-content h2 { font-size: 2.5rem; }
    .btn-start { padding: 13px 36px; font-size: 1rem; }
    .hero-bottom-info { bottom: 30px; left: 20px; }
    .slide-video { width: 100%; opacity: 0.4; }
}
/* ===== STATS BAR ===== */
.stats-bar {
    background: #eef2f9;
    padding: 50px 40px;
}

.stats-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.stats-bar-item {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.stats-num {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #0d1f4e;
    line-height: 1;
    white-space: nowrap;
}

.stats-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #4a5a7a;
    white-space: nowrap;
}

.stats-divider {
    width: 1px;
    height: 40px;
    background: #c5cfe0;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stats-bar-inner {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .stats-divider { display: none; }
    .stats-bar-item { justify-content: center; }
    .stats-num { font-size: 1.8rem; }
}

/* ===== FUNKCIONALNOSTI SEKCIJA ===== */
.features-section {
    background: #fff;
    padding: 80px 40px;
}

.features-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Badge */
.features-badge-wrap {
    margin-bottom: 28px;
}
.features-badge {
    display: inline-block;
    background: #f0f2f5;
    border: 1.5px solid #d0d5e0;
    border-radius: 999px;
    padding: 8px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a2e;
    text-transform: uppercase;
}

/* Naslov */
.features-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0d1f4e;
    margin-bottom: 16px;
    line-height: 1.15;
}

.features-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #5a6a8a;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Sadržaj: 2 kolone */
.features-content {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
    position: relative;
}

/* Dekorativna pozadinska talasasta linija */
.features-content::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 10%;
    width: 55%;
    height: 120%;
    background-image: url("../images/efekat.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

/* Leva kolona */
.features-left {
    flex: 1;
    position: relative;
    z-index: 1;
}

.features-app-icon {
    width: 64px;
    height: 64px;
    background: #1a1a2e;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}

.features-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #0d1f4e;
    margin-bottom: 18px;
    line-height: 1.3;
}

.features-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 36px;
}

.features-highlight {
    color: #1a3a8f;
    font-weight: 700;
}

/* Feature kartice */
.features-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    background: #f5f7fb;
    border-radius: 12px;
    padding: 24px 20px;
}

.feature-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0d1f4e;
    margin-bottom: 10px;
}

.feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #5a6a8a;
    line-height: 1.6;
}

/* Desna kolona - telefon */
.features-right {
    flex: 0 0 42%;
    position: relative;
    z-index: 1;
}

.features-phone {
    width: 255px;   /* ← fiksna širina, uvek tolika */
    max-width: none; /* ← ukida ograničenje */
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18));
}

/* Responsive */
@media (max-width: 968px) {
    .features-content {
        flex-direction: column;
        gap: 40px;
    }
    .features-right { flex: 0 0 auto; width: 100%; max-width: 340px; margin: 0 auto; }
    .features-title { font-size: 2.2rem; }
}

@media (max-width: 600px) {
    .features-section { padding: 60px 20px; }
    .features-title { font-size: 1.8rem; }
    .features-cards { grid-template-columns: 1fr; }
}

/* Dekorativni efekat kao slika */
.features-efekat {
    position: absolute;
    top: -40px;
    left: 10%;
    width: 55%;
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

/* ===== OPCIJE SEKCIJA ===== */
.opcije-section {
    background: #fff;
    padding: 80px 40px;
}

.opcije-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.opcije-badge-wrap {
    margin-bottom: 24px;
}

.opcije-badge {
    display: inline-block;
    background: #f0f2f5;
    border: 1.5px solid #d0d5e0;
    border-radius: 999px;
    padding: 7px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a2e;
    text-transform: uppercase;
}

.opcije-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #0d1f4e;
    margin-bottom: 50px;
    line-height: 1.2;
}

/* Grid 3x2 */
.opcije-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.opcije-card {
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.opcije-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}

.opcije-img-wrap {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
}

.opcije-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.opcije-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0d1f4e;
    margin: 0;
    padding: 0 4px 8px;
}

@media (max-width: 900px) {
    .opcije-grid { grid-template-columns: repeat(2, 1fr); }
    .opcije-title { font-size: 2rem; }
}

@media (max-width: 580px) {
    .opcije-section { padding: 60px 20px; }
    .opcije-grid { grid-template-columns: 1fr; }
    .opcije-title { font-size: 1.6rem; }
}

/* ===== ANALIZE SEKCIJA ===== */
.analize-section {
    background: #f7f8fa;
    padding: 90px 40px;
}

.analize-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.analize-badge-wrap {
    margin-bottom: 28px;
}

.analize-badge {
    display: inline-block;
    background: #f0f2f5;
    border: 1.5px solid #d0d5e0;
    border-radius: 999px;
    padding: 7px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a2e;
    text-transform: uppercase;
}

.analize-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0d1f4e;
    line-height: 1.25;
    margin-bottom: 28px;
}

.analize-subtitle-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
}

.analize-icon {
    width: 44px;
    height: 44px;
    background: #1a1a2e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.analize-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a2e;
}

.analize-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.analize-card {
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.analize-card:hover {
    box-shadow: 0 10px 36px rgba(0,0,0,0.09);
    transform: translateY(-4px);
}

.analize-card-img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e0e3ea;
    background: #f5f6f8;
}

.analize-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.analize-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0d1f4e;
    margin-bottom: 8px;
}

.analize-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #5a6a8a;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .analize-cards { grid-template-columns: 1fr; }
    .analize-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .analize-section { padding: 60px 20px; }
    .analize-title { font-size: 1.6rem; }
}

/* ===== KONTAKT SEKCIJA ===== */
.kontakt-section {
    background: #fff;
    padding: 90px 40px;
}

.kontakt-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.kontakt-badge-wrap {
    margin-bottom: 28px;
}

.kontakt-badge {
    display: inline-block;
    background: #f0f2f5;
    border: 1.5px solid #d0d5e0;
    border-radius: 999px;
    padding: 7px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a2e;
    text-transform: uppercase;
}

.kontakt-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0d1f4e;
    line-height: 1.2;
    margin-bottom: 60px;
}

.kontakt-content {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.kontakt-left {
    flex: 0 0 52%;
}

.kontakt-laptop {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.12));
}

.kontakt-right {
    flex: 1;
}

.kontakt-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0d1f4e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.kontakt-yellow {
    color: #FFD700;
}

.kontakt-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 28px;
}

.kontakt-desc strong {
    color: #0d1f4e;
    font-weight: 700;
}

.kontakt-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 36px;
}

.kontakt-check-item {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a1a2e;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #e8edf8;
    border-radius: 50%;
    color: #1a3a8f;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.kontakt-btns {
    display: flex;
    align-items: center;
    gap: 28px;
}

.btn-kontakt-primary {
    background: #FFD700;
    color: #0d1f4e;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
    display: inline-block;
}

.btn-kontakt-primary:hover {
    background: #f5c800;
    transform: translateY(-2px);
}

.btn-kontakt-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0d1f4e;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
    transition: color 0.2s;
}

.btn-kontakt-secondary:hover {
    color: #1a3a8f;
}

@media (max-width: 900px) {
    .kontakt-content {
        flex-direction: column;
        gap: 40px;
    }
    .kontakt-left { flex: 0 0 auto; width: 100%; }
    .kontakt-title { font-size: 2rem; }
    .kontakt-heading { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .kontakt-section { padding: 60px 20px; }
    .kontakt-title { font-size: 1.6rem; }
    .kontakt-checks { grid-template-columns: 1fr; }
}

/* ===== KONTAKT FORMA SEKCIJA ===== */
.forma-section {
    background: #f7f8fa;
    padding: 90px 40px;
}

.forma-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.forma-badge-wrap {
    margin-bottom: 20px;
}

.forma-badge {
    display: inline-block;
    background: #f0f2f5;
    border: 1.5px solid #d0d5e0;
    border-radius: 999px;
    padding: 7px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a2e;
    text-transform: uppercase;
}

.forma-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #0d1f4e;
    margin-bottom: 12px;
    line-height: 1.2;
}

.forma-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #5a6a8a;
    margin-bottom: 50px;
}

.forma-content {
    display: flex;
    gap: 48px;
    text-align: left;
    align-items: stretch;
}

/* LEVO: forma */
.forma-left {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.kontakt-forma {
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.forma-row {
    display: flex;
    gap: 16px;
}

.forma-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.forma-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0d1f4e;
}

.forma-group input,
.forma-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a1a2e;
    background: #f7f8fa;
    border: 1.5px solid #e0e3ea;
    border-radius: 10px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: none;
    width: 100%;
}

.forma-group input:focus,
.forma-group textarea:focus {
    border-color: #1a3a8f;
    box-shadow: 0 0 0 3px rgba(26,58,143,0.08);
    background: #fff;
}

.forma-group input::placeholder,
.forma-group textarea::placeholder {
    color: #aab0c0;
}

.forma-btn {
    background: #FFD700;
    color: #0d1f4e;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 32px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
    margin-top: 4px;
}

.forma-btn:hover {
    background: #f5c800;
    transform: translateY(-2px);
}

.forma-success {
    display: none;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1.5px solid #a5d6a7;
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Firma info ispod forme */
.firma-info {
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.firma-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.firma-info-icon {
    width: 38px;
    height: 38px;
    background: #eef2fb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3a8f;
    flex-shrink: 0;
}

.firma-info-item div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.firma-info-item strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d1f4e;
}

.firma-info-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #5a6a8a;
}

/* DESNO: mapa */
.forma-right {
    flex: 1;
}

.mapa-wrap {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #e8eaf0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}

.mapa-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

@media (max-width: 900px) {
    .forma-content {
        flex-direction: column;
    }
    .forma-left { flex: 0 0 auto; }
    .mapa-wrap { min-height: 360px; }
    .mapa-wrap iframe { min-height: 360px; }
    .forma-title { font-size: 2rem; }
}

@media (max-width: 580px) {
    .forma-section { padding: 60px 20px; }
    .forma-title { font-size: 1.6rem; }
    .forma-row { flex-direction: column; }
    .kontakt-forma { padding: 24px 20px; }
    .firma-info { padding: 20px; }
}

.forma-error {
    display: none;
    background: #fdecea;
    color: #c62828;
    border: 1.5px solid #ef9a9a;
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

.forma-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===================================================
   MOBILNA VERZIJA - POPRAVKE
   =================================================== */

/* --- HERO SEKCIJA NA MOBILNOM --- */
@media (max-width: 768px) {

    .hero-slider {
        height: 100svh;
        min-height: 600px;
    }

    .slide-video {
        width: 100% !important;
        height: 100%;
        opacity: 0.6 !important;
        z-index: 1;
    }

    /* Naslov + dugme - pomeri nadole */
    .slide-content {
        top: 38%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 20px;
        max-width: 100%;
        text-align: center;
        width: 100%;
    }

    .slide-content h2 {
        font-size: 2.2rem !important;
        white-space: normal;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 22px;
    }

    .btn-start {
        padding: 14px 32px;
        font-size: 1.05rem;
    }

    /* Bottom info - više */
    .hero-bottom-info {
        position: absolute;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;
        z-index: 10;
    }

    .tagline-white {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    .tagline-yellow {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }

    .app-store-buttons {
        justify-content: center;
        gap: 10px;
    }

    .store-button img {
        height: 38px;
    }

    .store-button:last-child img {
        height: 54px;
    }
}

/* --- HEADER / MENI NA MOBILNOM --- */
@media (max-width: 900px) {

    /* Header CTA dugmad - smanji */
    .btn-signin,
    .btn-signup {
        padding: 10px 20px;
        font-size: 15px;
    }

    /* Hamburger pozicija */
    .hamburger {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Header CTA da ne prelazi pored hamburgera */
    .header-cta {
        margin-right: 60px;
    }
}

@media (max-width: 768px) {
    .header-cta {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .header-cta {
        margin-right: 52px;
    }
}

/* --- FEATURES SEKCIJA NA MOBILNOM --- */
@media (max-width: 768px) {
    .features-section {
        padding: 50px 16px;
    }

    .features-efekat {
        display: none; /* Sakrij dekorativni efekat na mobilnom */
    }

    .features-content::before {
        display: none;
    }

    .features-title {
        font-size: 1.7rem;
    }

    .features-cards {
        grid-template-columns: 1fr;
    }

    .features-phone {
        width: 200px;
    }
}

/* --- OPCIJE GRID NA MOBILNOM --- */
@media (max-width: 480px) {
    .opcije-section {
        padding: 50px 16px;
    }

    .opcije-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .opcije-img-wrap {
        height: 180px;
    }
}

/* --- ANALIZE SEKCIJA NA MOBILNOM --- */
@media (max-width: 580px) {
    .analize-section {
        padding: 50px 16px;
    }

    .analize-title {
        font-size: 1.5rem;
    }

    .analize-cards {
        grid-template-columns: 1fr;
    }
}

/* --- KONTAKT SEKCIJA NA MOBILNOM --- */
@media (max-width: 768px) {
    .kontakt-section {
        padding: 60px 16px;
    }

    .kontakt-title {
        font-size: 1.7rem;
        margin-bottom: 36px;
    }

    .kontakt-content {
        flex-direction: column;
        gap: 30px;
    }

    .kontakt-left {
        width: 100%;
    }

    .kontakt-checks {
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
    }
}

@media (max-width: 400px) {
    .kontakt-checks {
        grid-template-columns: 1fr;
    }
}

/* --- FORMA SEKCIJA NA MOBILNOM --- */
@media (max-width: 768px) {
    .forma-section {
        padding: 60px 16px;
    }

    .forma-content {
        flex-direction: column;
        gap: 28px;
    }

    .forma-left {
        width: 100%;
    }

    .forma-row {
        flex-direction: column;
        gap: 16px;
    }

    .kontakt-forma {
        padding: 24px 16px;
    }

    .firma-info {
        padding: 20px 16px;
    }

    .mapa-wrap,
    .mapa-wrap iframe {
        min-height: 280px;
    }
}

/* --- STATS BAR NA MOBILNOM --- */
@media (max-width: 580px) {
    .stats-bar {
        padding: 36px 20px;
    }

    .stats-bar-inner {
        align-items: flex-start;
    }
}

/* --- SPREČAVANJE HORIZONTALNOG SKROLOVANJA --- */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Opcije kartice kao linkovi */
a.opcije-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.opcije-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0d1f4e;
    padding: 48px 40px 28px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    height: 48px;
    width: auto;
    display: block;
    opacity: 0.9;
}

.footer-nav {
    display: flex;
    gap: 32px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #FFD700;
}

.footer-copy {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 20px 24px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-nav {
        gap: 20px;
    }
}

/* Scroll margin za sticky header + sticky tabs */
.u-hero-banner[id],
section[id],
div[id] {
    scroll-margin-top: 135px;
}

/* ===== MOBILNI CTA BAR (iznad headera) ===== */
.mobile-cta-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
        padding: 6px 16px;
        background: #ffffff;
        border-bottom: 1px solid #e8e8e8;
        position: fixed !important;
        top: 0 !important;
        left: 0;
        width: 100%;
        z-index: 2000 !important;
        box-sizing: border-box;
        height: 44px;
    }

    /* Dugmici u mobilnom baru - manji od desktop verzije */
    .mobile-cta-bar .btn-signin,
    .mobile-cta-bar .btn-signup {
        display: inline-block !important;
        padding: 6px 16px !important;
        font-size: 13px !important;
    }

    /* Pomeri header ispod mobilnog bara - ID ima visu specificnost */
    #site-header {
        top: 44px !important;
    }

    /* Pomeri hero ispod headera + bara */
    .hero-slider {
        margin-top: calc(72px + 44px) !important;
    }

    /* Sakrij dugmice iz headera na mobilnom - ID pobeduje sve klase */
    .header-cta,
    #header-cta {
        display: none !important;
    }
}