/* ==========================================================================
   1. GLOBAL RESET & BOOTSTRAP REPLACEMENT
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0; padding: 0;
    font-family: 'Manrope', 'Source Sans Pro', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Sprečava horizontalni skrol */
    width: 100%;
}

body {
    background-color: #ffffff;
    color: #333333;
    padding-top: 80px; /* Za fiksni header */
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- KONTEJNERI --- */
.container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

/* --- GRID SISTEM (POPRAVLJEN) --- */
.row { 
    display: flex; 
    flex-wrap: wrap; 
    margin-right: -15px; 
    margin-left: -15px; 
    align-items: center; /* Dodato da centrira elemente vertikalno */
}

.row > * { 
    flex-shrink: 0; 
    width: 100%; 
    max-width: 100%; 
    padding-right: 15px; 
    padding-left: 15px; 
}

.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* TABLET */
@media (min-width: 768px) {
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    .d-md-block { display: block !important; }
}

/* DESKTOP (Ovo je falilo!) */
@media (min-width: 992px) {
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; } /* OVO JE FALILO ZA FORMU */
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; } /* OVO JE FALILO ZA TEKST */
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}
/* Utilities */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-5 { margin-top: 3rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif; font-weight: 700; color: #0a192f;
    margin-top: 0; margin-bottom: 0.5rem; line-height: 1.2;
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
/* FIX ZA HEADER I NAVIGACIJU */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #0a192f;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    height: 80px;
    display: flex;
    align-items: center;
}

.premium-nav-wrapper {
    width: 100%;
    max-width: 1140px !important; /* Širina poravnata sa containerom */
    margin: 0 auto !important;
    padding: 0 15px;
    display: flex;
    justify-content: space-between; /* Ključno za Logo levo | Navigacija centar | Dugme desno */
    align-items: center;
}

/* LOGO PROSTOR */
.logo-area {
    flex: 0 0 auto; /* Ne dozvoljava navigaciji da ga "stisne" */
}

.text-logo {
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 26px !important;
    text-decoration: none !important;
    line-height: 1 !important;
    display: block !important;
}

.logo-subtitle {
    color: #ccc !important;
    font-size: 10px !important;
    letter-spacing: 2.5px !important;
    display: block !important;
    text-transform: uppercase;
    margin-top: 4px;
}

/* CENTRIRANA NAVIGACIJA */
.nav-area {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list > li > a {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

/* DESNO DUGME */
.besplatna-analiza-btn {
    flex: 0 0 auto;
    background-color: #ff7300 !important;
    color: #0a192f !important; /* Tamna slova za bolji kontrast */
    padding: 10px 22px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none !important;
    border: 2px solid #ff7300 !important;
    transition: 0.3s;
}

/* HOVER EFEKAT - CRNA POZADINA I NARANDŽASTA SLOVA */
.besplatna-analiza-btn:hover {
    background-color: #000000 !important; /* Potpuno crna pozadina */
    color: #ff7300 !important;            /* Tvoja narandžasta slova */
    border-color: #ff7300 !important;     /* Narandžasti border */
    transform: translateY(-2px);           /* Blagi premium skok nagore */
    box-shadow: 0 6px 15px rgba(255, 115, 0, 0.2); /* Suptilni narandžasti sjaj */
}



.nav-list > li { position: relative; height: 80px; display: flex; align-items: center; }

.nav-list > li > a:hover { color: #F58634 !important; }
.nav-list > li:hover > a i { transform: rotate(180deg); color: #F58634 !important; }


.accent-text { color: #F58634; }
.logo-subtitle {
    font-size: 10px !important;
    letter-spacing: 2.5px !important;
    margin-top: 5px !important;
    opacity: 0.9;
}
/* Sređivanje dugmeta u navigaciji */


/* Dropdown */
.premium-dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(15px);
    background: #0d1b2e; min-width: 260px; padding: 12px 0;
    opacity: 0; visibility: hidden; transition: 0.3s;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4); border-top: 3px solid #F58634;
    border-radius: 0 0 8px 8px; z-index: 100000;
}
.has-premium-dropdown:hover .premium-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.premium-dropdown-menu::before {
    content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
    border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid #F58634;
}
.premium-dropdown-menu li a {
    display: block; padding: 12px 25px; color: #cbd5e0; font-size: 14px;
    text-transform: none; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.03);
    border-left: 3px solid transparent; width: 100%; text-align: left;
}
.premium-dropdown-menu li a:hover { background: rgba(255,255,255,0.03); color: #F58634; padding-left: 32px; border-left: 3px solid #F58634; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0; width: 30px; height: 20px; position: relative; }
.hamburger span { display: block; width: 100%; height: 2px; background: #F58634; position: absolute; left: 0; transition: 0.3s; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: 0; width: 100%; height: 100vh;
    background: #0a192f; z-index: 100000; transform: translateX(100%);
    transition: 0.4s; padding: 100px 30px 40px; overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-nav a { display: block; font-size: 20px; color: #fff; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-weight: 700; }
.mobile-group { margin-top: 40px; }
.mobile-group span { display: block; color: #F58634; font-size: 13px; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 2px; }
.mobile-cta { background: #F58634; text-align: center; border-radius: 8px; margin-top: 40px; border: none; color: #fff !important; padding: 15px; text-transform: uppercase; font-weight: 800; }
.mobile-close { position: absolute; top: 25px; right: 25px; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; }

/* CTA Button Header */
.cta-btn-nav {
    background-color: #F58634 !important; color: #ffffff !important; padding: 12px 30px !important;
    border-radius: 50px; font-weight: 800; font-size: 13px; text-transform: uppercase;
    text-decoration: none !important; display: inline-block; transition: 0.3s;
    box-shadow: 0 4px 15px rgba(245, 134, 52, 0.4); border: 2px solid #F58634;
}
.cta-btn-nav:hover { background-color: #ffffff !important; color: #0a192f !important; border-color: #ffffff; transform: translateY(-2px); }

@media (max-width: 1200px) { .nav-list { gap: 15px; } .premium-nav-wrapper { padding: 0 15px; } .text-logo { font-size: 22px; } }
@media (max-width: 991px) { .nav-area { display: none; } .cta-area { display: none; } .hamburger { display: block; } }

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section-seo {
    background-color: #0a192f; padding: 100px 0 120px 0; text-align: center;
    border-bottom: 6px solid #F58634; position: relative; z-index: 1;
}
.hero-section-seo h1 { color: #ffffff; font-size: 48px; font-weight: 800; margin-bottom: 25px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-subtitle { font-family: 'Source Sans Pro', sans-serif; color: #F58634; font-size: 20px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
@media (max-width: 768px) { .hero-section-seo { padding: 60px 0 80px 0; } .hero-section-seo h1 { font-size: 32px; } .hero-subtitle { font-size: 16px; } }

/* KILL SWITCH FOR GHOST LINES */
.hero-section-seo::after, .hero-section-seo::before,
.case-study-ron::before, .case-study-ron::after,
.ron-card::before, .ron-card::after { content: none !important; display: none !important; }

/* ==========================================================================
   4. CASE STUDY SECTION
   ========================================================================== */
.case-study-section { padding: 80px 0; background: #eef2f6; }
.case-study-card { background: #f8faff; border-radius: 20px; padding: 60px 50px; border: 1px solid #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.case-study-title { font-size: 36px; color: #0a192f; margin-bottom: 15px; text-align: center; border: none !important; }
.case-study-grid { display: flex; gap: 50px; margin-bottom: 50px; align-items: flex-start; }
.result-badges { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.result-badge { background: #fff; padding: 15px 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); font-weight: 700; color: #0056b3; display: flex; align-items: center; gap: 15px; border-left: 4px solid #F58634; }
.case-study-text { flex: 1.2; font-size: 17px; line-height: 1.8; color: #444; }
.case-study-quote { background: #0a192f; color: #fff; padding: 30px 40px; border-radius: 15px; font-size: 19px; font-style: italic; text-align: center; margin-top: 30px; }
@media (max-width: 991px) { .case-study-grid { flex-direction: column; } .case-study-card { padding: 30px 20px; } }

/* ==========================================================================
   5. BENEFITS & METHODS
   ========================================================================== */
.seo-benefits-section { padding: 80px 0; background-color: #f9f9f9; }
.benefit-box { background: #ffffff; padding: 30px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; height: 100%; transition: 0.3s; border-bottom: 3px solid transparent; }
.benefit-box:hover { transform: translateY(-10px); border-bottom: 3px solid #F58634; }
.benefit-box i { font-size: 40px; color: #F58634; margin-bottom: 20px; }
.approach-card { background: #fff; padding: 30px; border-radius: 15px; height: 100%; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.approach-card:hover { transform: translateY(-10px); }

/* ==========================================================================
   6. CONTACT & GLASS
   ========================================================================== */
.glass-contact-section { background: linear-gradient(135deg, #003d7a 0%, #0056b3 100%); padding: 100px 0; color: #ffffff; }
.glass-card { background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 24px; padding: 40px; height: 100%; }
.glass-form input, .glass-form textarea { width: 100%; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px; padding: 14px 18px; color: #fff; margin-bottom: 20px; }
.glass-btn { background: #F58634; color: #fff !important; padding: 16px; border-radius: 12px; width: 100%; font-weight: 700; text-align: center; display: block; border: none; }


/* ==========================================================================
   PAIN POINTS SECTION (Kako da znate...)
   ========================================================================== */
.pain-points-section {
    padding: 100px 0;
    background-color: #060e1e; /* Tamno plava pozadina kao na slici */
    color: #fff !important; 
    text-align: center;
}

.nv-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.nv-section-header p {
    font-size: 18px;
    color: #cbd5e0;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* GRID KONTEJNER */
.pp-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolone */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* KARTICA */
.pp-card {
    background: rgba(255, 255, 255, 0.05); /* Stakleni efekat */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.pp-card:hover {
    transform: translateY(-10px);
    border-color: #F58634; /* Narandžasti okvir na hover */
}

/* IKONICA */
.pp-icon {
    margin-bottom: 20px;
    color: #F58634;
    width: 50px;
    height: 50px;
}
.pp-icon svg {
    width: 100%;
    height: 100%;
}

/* NASLOV KARTICE */
.pp-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

/* POSLEDNJA KARTICA (HIGHLIGHT - PLAVA) */
.pp-card.pp-highlight {
    background: #0056b3; /* Plava pozadina */
    border-color: #0056b3;
}
.pp-card.pp-highlight:hover {
    background: #004494;
}
.pp-card.pp-highlight .pp-icon {
    color: #fff; /* Bela ikonica na plavoj pozadini */
}

/* MOBILNI PRIKAZ */
@media (max-width: 991px) {
    .pp-grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 kolone na tabletu */
    }
}

@media (max-width: 768px) {
    .pp-grid-container {
        grid-template-columns: 1fr; /* 1 kolona na mobilnom */
    }
    .nv-section-header h2 {
        font-size: 28px;
    }
}
/* ==========================================================================
   INDEX: OVERLAP BOX & SERVICES GRID
   ========================================================================== */

/* 1. BELI BOKS KOJI PRELAZI PREKO HERO SEKCIJE */
.overlap-container {
    position: relative;
    margin-top: -80px; /* Povlači boks na gore da pređe preko plavog */
    z-index: 10;       /* Da bude iznad svega */
    padding: 0 15px;
    margin-bottom: 50px;
}

.white-overlap-box {
    background: #ffffff;
    max-width: 1100px;
    margin: 0 auto;    /* Centriranje */
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* Jaka senka */
    text-align: center;
}

.overlap-title {
    font-size: 32px;
    color: #0a192f;
    font-weight: 800;
    margin-bottom: 15px;
}

.overlap-text {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   2. SEKCIJA EKSPERTIZA (SERVICES) - DARK MODE FIX
   ========================================================================== */

.nv-services-section {
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #060e1e; /* Tamno plava pozadina */
    position: relative;
    z-index: 1;
}

.nv-section-header {
    text-align: center;
    margin-bottom: 60px;
}
/* Naslovi moraju biti beli na tamnoj pozadini */
.nv-section-header h2 { font-size: 36px; font-weight: 800; color: #ffffff !important; }
.nv-section-header h2 span { color: #F58634; }
.nv-section-header p { font-size: 18px; color: #a8b2d1; margin-top: 10px; }

/* 3. MREŽA KARTICA (GRID) */
.nv-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolone na desktopu */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* KARTICA (TAMNA VERZIJA) */
.nv-grid-card {
    background: #112240; /* Svetlija nijansa plave za kartice */
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Suptilan okvir */
    box-shadow: none;
}

/* Hover efekat */
.nv-grid-card:hover {
    transform: translateY(-10px); /* Diže se gore */
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); /* Jaka senka */
    border-color: #F58634; /* Narandžasti okvir */
}

/* Broj u pozadini (01, 02...) */
.nv-grid-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25); /* Jedva vidljiv beli broj */
    line-height: 1;
}

/* Naslov i opis */
.nv-grid-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff; /* Beli naslov */
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.nv-grid-desc {
    font-size: 15px;
    color: #cbd5e0; /* Svetlo sivi tekst */
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Dugme SAZNAJ VIŠE */
.nv-grid-btn {
    font-size: 13px;
    font-weight: 800;
    color: #F58634;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nv-grid-btn:hover {
    color: #ffffff; /* Postaje belo na hover */
    padding-left: 5px;
}

/* --- RESPONSIVE (Mobilni i Tablet) --- */
@media (max-width: 991px) {
    .nv-grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 kolone na tabletu */
    }
}

@media (max-width: 768px) {
    .nv-grid-container {
        grid-template-columns: 1fr; /* 1 kolona na mobilnom */
    }
    .nv-section-header h2 { font-size: 28px; }
}
/* ==========================================================================
   HERO SECTION (INDEX - PLAVA SA FORMOM)
   ========================================================================== */
.hero-section {
    background-color: #060e1e; /* Tamno plava */
    padding: 120px 0 100px 0;  /* Prostor gore/dole */
    position: relative;
    overflow: hidden;
    color: #fff;
    /* Suptilni radijalni sjaj u pozadini */
    background-image: radial-gradient(circle at 70% 30%, rgba(245, 134, 52, 0.15), transparent 40%);
}

/* Tekst levo */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #F58634;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(245, 134, 52, 0.3);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-title .accent {
    color: #F58634; /* Narandžasti naglasak */
}

.hero-description {
    font-size: 18px;
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Dugmići */
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background-color: #F58634;
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid #F58634;
    transition: 0.3s;
}

.hero-btn-primary:hover {
    background-color: transparent;
    color: #F58634 !important;
}

.hero-btn-secondary {
    background-color: transparent;
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: 0.3s;
}

.hero-btn-secondary:hover {
    border-color: #F58634;
    color: #F58634 !important;
}

/* --- STAKLENA FORMA (DESNO) --- */
.hero-glass-form {
    background: rgba(255, 255, 255, 0.05); /* Providno */
    backdrop-filter: blur(10px);            /* Zamućenje pozadine */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-glass-form h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.glass-description {
    color: #a0aec0;
    font-size: 14px;
    margin-bottom: 25px;
}

.hero-glass-form input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.hero-glass-form input:focus {
    border-color: #F58634;
    background: rgba(255,255,255,0.15);
}

.hero-glass-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.hero-glass-form button {
    width: 100%;
    padding: 16px;
    background: #F58634;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    margin-top: 10px;
}

.hero-glass-form button:hover {
    background: #e07b30;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 134, 52, 0.3);
}

/* RESPONSIVE (Mobilni) */
@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px 0;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-glass-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-title { font-size: 30px; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; }
}
/* ==========================================================================
   PROCESS TIMELINE SECTION (SEO PROCES)
   ========================================================================== */
.process-section {
    position: relative;
    overflow: hidden;
}

.nv-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a192f;
    margin-bottom: 10px;
}

/* --- NAVIGACIJA (LINET & TAČKICE) --- */
.timeline-nav-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

/* Siva linija u pozadini */
.timeline-line-bg {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 4px;
    background: #e0e0e0;
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 4px;
}

/* Narandžasta linija koja se puni */
.timeline-line-progress {
    position: absolute;
    top: 50%;
    left: 20px;
    height: 4px;
    background: #F58634;
    transform: translateY(-50%);
    z-index: 1;
    width: 0%; /* JS će ovo menjati */
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

/* Kontejner za korake */
.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2; /* Iznad linije */
}

/* Pojedinačni korak */
.timeline-step {
    text-align: center;
    cursor: pointer;
    width: 100px;
    position: relative;
    transition: 0.3s;
}

.timeline-step:hover .step-dot {
    transform: scale(1.2);
    border-color: #F58634;
}

/* Broj (01, 02...) */
.step-num {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* Tačka na liniji */
.step-dot {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 4px solid #e0e0e0;
    border-radius: 50%;
    margin: 0 auto;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Tekst ispod (Analiza, Strategija...) */
.step-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    margin-top: 15px;
    transition: 0.3s;
}

/* --- AKTIVNO STANJE (KAD SE KLIKNE) --- */
.timeline-step.active .step-num { color: #F58634; }
.timeline-step.active .step-label { color: #0a192f; font-weight: 800; }
.timeline-step.active .step-dot {
    background: #F58634;
    border-color: #F58634;
    transform: scale(1.4);
    box-shadow: 0 0 0 6px rgba(245, 134, 52, 0.2); /* Sjaj oko tačke */
}

/* --- SADRŽAJ (SLAJDOVI) --- */
.timeline-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    min-height: 350px; /* Da ne skače visina */
}

.timeline-slide {
    display: none; /* Sakriveno po defaultu */
    animation: fadeUp 0.5s ease forwards;
}

.timeline-slide.active {
    display: block; /* Prikaži aktivni */
}

.timeline-slide h3 {
    font-size: 28px;
    color: #0a192f;
    margin-bottom: 20px;
    font-weight: 700;
}

.timeline-slide p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.timeline-slide ul li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #444;
}

/* Animacija pojavljivanja */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- MOBILNI PRIKAZ --- */
@media (max-width: 768px) {
    .timeline-nav-wrapper { margin-bottom: 40px; }
    .step-num { display: none; } /* Sakrij brojeve gore da ne bude gužva */
    .step-label { font-size: 10px; margin-top: 10px; }
    .timeline-step { width: auto; flex: 1; }
    
    .timeline-slide h3 { font-size: 22px; text-align: center; }
    .timeline-slide p { text-align: center; font-size: 14px; }
    .timeline-slide ul { text-align: left; padding-left: 20px; }
    
    /* Slika na mobilnom ide gore */
    .timeline-slide .row { display: flex; flex-direction: column-reverse; }
    .timeline-slide .col-md-6 { margin-bottom: 20px; }
}
/* =========================
   TIMELINE CHECK LIST – HARD FIX
========================= */

.timeline-slide.active .nv-check-list-final {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.timeline-slide.active .nv-check-list-final li {
    position: relative;
    padding-left: 36px;              /* PROSTOR ZA CHECK */
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #333333 !important;       /* TEKST */
    opacity: 1 !important;
    visibility: visible !important;
}

/* CHECK IKONA */
.timeline-slide.active .nv-check-list-final li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0.15em;                     /* PORAVNANJE SA TEKSTOM */
    font-size: 16px;
    font-weight: 700;
    color: #f58634;
    line-height: 1;
}

/* ZA SLUČAJ DA NEKI GLOBALNI CSS GAZI */
.timeline-slide.active .nv-check-list-final li * {
    color: inherit !important;
}

/* ==========================================================================
   FIX ZA NASLOV U TAMNOJ "PAIN POINTS" SEKCIJI
   ========================================================================== */

/* 1. Naslov mora biti beo */
.pain-points-section h2,
.pain-points-section .nv-section-header h2 {
    color: #ffffff !important;
}

/* 2. Opis ispod naslova (svetlo siv) */
.pain-points-section p,
.pain-points-section .nv-section-header p {
    color: #cbd5e0 !important;
}

/* 3. Ako imaš i "Overlap" naslov u belom boksu iznad, on mora ostati taman */
.white-overlap-box h2,
.white-overlap-box .overlap-title {
    color: #0a192f !important; /* Vraća tamnu boju za beli boks */
}
.nv-check-list-final {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 0 !important;
}

.nv-check-list-final li {
    margin-bottom: 15px !important;
    display: flex !important;
    align-items: center !important;
    font-size: 1.05rem !important;
}

/* Boja IKONICE - Narandžasta */
.nv-check-list-final li i {
    color: #F58634 !important; 
    margin-right: 12px !important;
    font-size: 1.3rem !important;
    min-width: 25px !important;
}

/* Boja TEKSTA - Postavi boju koja ti odgovara (npr. #ffffff za belu ili #d1d1d1 za svetlo sivu) */
.nv-check-list-final li span {
    color: #ffffff !important; 
    display: inline-block !important;
}
/* ==========================================================================
   DARK BLOG SECTION (POPRAVLJENO DA SE POKLAPA SA HTML-om)
   ========================================================================== */

/* Glavna sekcija */
.latest-blog-section {
    padding: 100px 0;
    background-color: #060e1e; /* Tamno plava pozadina */
    color: #ffffff;
}

.blog-section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.blog-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #F58634;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

/* GRID KONTEJNER */
.blog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolone */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* KARTICA */
.blog-card {
    background-color: #112240; /* Malo svetlija od pozadine */
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: #F58634; /* Narandžasti okvir na hover */
}

/* SLIKA */
.blog-image-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05); /* Zum efekat */
    opacity: 1;
}

/* BEDŽ (Tag) NA SLICI */
.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
}
.tag-blue { background-color: #0056b3; }
.tag-orange { background-color: #F58634; }
.tag-purple { background-color: #6f42c1; }

/* SADRŽAJ KARTICE */
.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 12px;
    color: #8892b0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-excerpt {
    font-size: 15px;
    color: #a8b2d1; /* Svetlo siva za tekst */
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Gura dugme na dno */
}

.blog-link {
    font-size: 13px;
    font-weight: 700;
    color: #F58634;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

.blog-link:hover {
    color: #fff;
    padding-left: 5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr); /* 2 kolone tablet */
    }
}

@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: 1fr; /* 1 kolona mobilni */
        gap: 40px;
    }
    .blog-section-header h2 {
        font-size: 32px !important;
    }
}

/* ==========================================================================
   CLEAN FOOTER (DESKTOP + SMART MOBILE GRID)
   ========================================================================== */
#main-footer {
    background-color: #060e1e;
    color: #fff;
    padding-top: 70px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-family: 'Manrope', sans-serif; /* Ili tvoj glavni font */
    position: relative;
    z-index: 100;
}

/* GLAVNI GRID KONTEJNER */
.footer-custom-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px; /* Razmak između kolona na desktopu */
}

/* KOLONE NA DESKTOPU (POPRAVLJENO DA STANE U JEDAN RED) */
.footer-col-wide {
    width: 22%; /* Smanjeno sa 28% */
}

.footer-col-narrow {
    width: 14%; /* Smanjeno sa 16% */
}

/* --- ELEMENTI UNUTAR FUTERA --- */

/* Logo i Opis */
.footer-logo-link {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.footer-desc {
    color: #a8b2d1;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Naslovi */
.ft-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Liste linkova */
.ft-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-list li {
    margin-bottom: 12px;
}

.ft-list a {
    color: #cbd5e0;
    font-size: 15px;
    transition: 0.3s;
    text-decoration: none;
}

.ft-list a:hover {
    color: #F58634;
    padding-left: 5px;
}

/* Kontakt informacije */
.ft-contact .ft-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #cbd5e0;
    font-size: 15px;
}

.ft-contact i {
    color: #F58634;
    margin-top: 4px;
}

.ft-contact a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.3s;
}

.ft-contact a:hover { color: #F58634; }

/* QR Box */
.qr-link-wrapper { text-decoration: none; }
.qr-box {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
    display: inline-block;
}
.qr-box:hover {
    border-color: #F58634;
    transform: translateY(-5px);
}
.qr-box img {
    max-width: 80px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.qr-box span {
    display: block;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}



/* FORSIRANJE VIDLJIVOSTI IKONICA */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social .social-icon {
    width: 44px;
    height: 44px;
    background-color: #1a2233;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social .social-icon svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.footer-social .social-icon:hover {
    background-color: #ff7a00;
    transform: translateY(-3px);
}

/* DONJI DEO (Copyright) */
.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links a {
    color: #a8b2d1;
    font-size: 13px;
    margin: 0 10px;
    text-decoration: none;
}
.copyright { color: #718096; font-size: 13px; }

/* LEBDEĆE DUGME ZA POZIV */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    transition: transform 0.3s;
}
.floating-call-btn:hover { transform: scale(1.1); }
.call-icon-box {
    width: 60px; height: 60px;
    background-color: #25d366; /* WhatsApp Green */
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    color: white;
}

/* ==========================================================================
   MOBILE LAYOUT (100% -> 50/50 -> 50/50 -> 100%)
   ========================================================================== */
@media (max-width: 991px) {
    .footer-custom-grid {
        gap: 0; /* Uklanjamo gap da bi width 50% lepo legao */
    }

    /* 1. PRVA KOLONA (LOGO) - 100% */
    .footer-col-wide:first-child {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    .footer-col-wide:first-child .footer-desc {
        margin: 0 auto 20px; /* Centriramo tekst */
    }
    .footer-col-wide:first-child .social-flex {
        justify-content: center;
    }

    /* 2. SREDNJE KOLONE (EKSPERTIZE, MENI, POKLON, KONTAKT) - 50% */
    .footer-col-narrow, 
    .footer-col-wide:last-child {
        width: 50%; /* Dve u redu */
        padding: 0 15px; /* Da se ne lepe */
        margin-bottom: 40px;
    }

    /* Specifično za Kontakt na mobilnom (jer je u 50%) */
    .ft-contact .ft-row {
        flex-direction: column; /* Ikonica gore, tekst dole da stane */
        gap: 5px;
    }

    /* 3. COPYRIGHT - 100% */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .nv-grid-container, .standards-list, .blog-container { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; }
    .hero-glass-form { margin-top: 40px; }
}
@media (max-width: 768px) {
    .nv-grid-container, .standards-list, .blog-container { grid-template-columns: 1fr; }
}
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
/* =========================
   HERO PREMIUM ANIMACIJE
========================= */

.hero-badge,
.hero-title,
.hero-description,
.hero-actions {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.25s;
}

.hero-description {
    animation-delay: 0.4s;
}

.hero-actions {
    animation-delay: 0.55s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-title .accent {
    position: relative;
    animation: accentGlow 3s ease-in-out infinite;
}

@keyframes accentGlow {
    0%, 100% {
        text-shadow: 0 0 0 rgba(245,134,52,0);
    }
    50% {
        text-shadow: 0 0 18px rgba(245,134,52,0.35);
    }
}
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(245,134,52,0.12), transparent 45%);
    opacity: 0;
    animation: bgFade 1.5s ease forwards;
    animation-delay: 0.6s;
    pointer-events: none;
}

@keyframes bgFade {
    to {
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .hero-badge,
    .hero-title,
    .hero-description,
    .hero-actions {
        animation: none;
        opacity: 1;
        transform: none;
    }
    /* LOGO AREA – ukloni okvir (border/outline/shadow) */
.logo-area,
.logo-area a,
.logo-area img {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

}

