/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    color: #333;
    background: #fff;
    font-size: 16px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #333;
}

/* Links */
a {
    transition: all 0.4s ease;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Button Styles */
.btn-arf {
    background: #e00445;
    border: 0;
    transition: background 0.3s ease;
}

.btn-arf:hover {
    background: #333;
}

/* Search Section Heading */
.search-section h1 {
    font-family: 'Jost', sans-serif;
}



.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #8ca2ff94!important
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0;
}



/* ========================================= */
/*   DASHBOARD & COMMON - NAJBRUTALNIJI REDIZAJN   */
/* ========================================= */

/* === DASHBOARD BOXES === */
.dashboard-box {
    position: relative;
    padding: 30px !important;
    color: #fff !important;
    margin-bottom: 30px !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.dashboard-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.dashboard-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    transition: transform 0.6s ease;
    transform-origin: bottom left;
    opacity: 0.5;
    z-index: 1;
}

.dashboard-box:hover::before {
    transform: scale(2);
}

/* 
  KLJUČNA ISPRAVKA: U HTML-u, sav sadržaj mora biti unutar <div class="content-wrapper">
*/
.dashboard-box .content-wrapper {
    position: relative;
    z-index: 2; /* Sadržaj je IZNAD sjaja */
}

/* --- Specifični stilovi za svaki box --- */

/* BOX 1: "Cosmic Blue" Gradijent */
.dashboard-box-1 {
    background: linear-gradient(135deg, #1f4287 0%, #278ea5 100%) !important;
}

/* BOX 2: "Lush Green" Gradijent */
.dashboard-box-2 {
    background: linear-gradient(135deg, #1a936f 0%, #88d498 100%) !important;
}

/* BOX 3: "Luxury Metal" Stil */
.dashboard-box-3 {
    background: linear-gradient(135deg, #434343 0%, #000000 100%) !important;
    color: #f0f0f0 !important;
    border: none !important;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Nasleđivanje boje teksta za sve elemente unutar box-a */
.dashboard-box,
.dashboard-box h1,
.dashboard-box h2,
.dashboard-box h3,
.dashboard-box h4,
.dashboard-box p,
.dashboard-box span,
.dashboard-box div {
    color: #ffffff !important;
}

/* Specijalno pravilo za box-3 koji ima svetliji tekst */
.dashboard-box-3,
.dashboard-box-3 *,
.dashboard-box-3 .content-wrapper,
.dashboard-box-3 .content-wrapper * {
    color: #f0f0f0 !important;
}


/* === Background and Text Colors === */
.bg-lightblue {
    background: #f0f2f5 !important;
}

.customer-dashboard-message {
    background: linear-gradient(45deg, #d32f2f, #ff7043) !important;
    color: #fff !important;
    padding: 15px 20px !important;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
}

.limit {
    font-size: 14px;
    color: #d32f2f !important;
    font-weight: 700;
}


/* === Video i Iframe Stilovi === */
.slider-video iframe,
.contact-page-map iframe,
.existing-video iframe {
    width: 100% !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 40px rgba(100, 108, 143, 0.2);
    border: none;
}
.slider-video iframe { height: 600px; }
.contact-page-map iframe { height: 500px; margin-bottom: 50px; }
.existing-video iframe { height: 170px; }


/* === Common Utility Classes (ostaju iste) === */
.w-100px { width: 100px; }
.w-150px { width: 150px; }
.w-200px { width: 200px; }
.w-300px { width: 300px; }
.w-400px { width: 400px; }



/* === PAGINACIJA === */
.psp_pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.psp_pagination .page-item {
    margin: 0 8px !important;
}

.psp_pagination .page-link {
    color: #5a678b !important;
    outline: none !important;
    width: 45px !important;
    height: 45px !important;
    font-size: 16px !important;
    padding: 0 !important;
    line-height: 45px !important;
    font-weight: 700 !important;
    text-align: center !important;
    border-radius: 14px !important;
    border: none !important;
    
    background: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 4px 15px rgba(100, 108, 143, 0.1) !important;

    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.psp_pagination .page-link:focus {
    box-shadow: 0 4px 15px rgba(100, 108, 143, 0.1) !important;
}

.psp_pagination .page-item:not(.active) .page-link:hover {
    color: #fff !important;
    background: #2575fc !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 117, 252, 0.4) !important;
}

.psp_pagination .page-item.active .page-link {
    color: #fff !important;
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 117, 252, 0.5) !important;
}


/* === Specific Label and Font Weights === */
label {
    font-weight: 600 !important; /* Malo jači font za bolju čitljivost */
    color: #1a2551;
}
 /* ---------- Top Bar: Glass Effect & Normal Flow ---------- */
.top {
    position: relative !important;      /* više nije fixed */
    height: auto !important;
    background-color: rgba(0, 0, 139, 0.7) !important; /* tamno-plava sa providnošću */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ecf0f1 !important;         /* svetlosiva boja teksta */
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 20px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    margin: 0 0 10px 0 !important;     /* razmak ispod top bara */
    border-radius: 0 !important;
    z-index: 1000 !important;
}

.top ul.top-left,
.top ul.top-right {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-content: space-around !important;
}

.top ul.top-left li,
.top ul.top-right li {
    list-style-type: none !important;
    padding: 5px 15px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
}

.top ul.top-left li a,
.top ul.top-right li a {
    color: #ecf0f1 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    border: 1px solid rgba(236, 240, 241, 0.2) !important;
    border-radius: 5px !important;
    padding: 8px 12px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

.top ul.top-left li a:hover,
.top ul.top-right li a:hover {
    color: #8e44ad !important;
}

.top ul.top-right select {
    background: transparent !important;
    color: #ecf0f1 !important;
    border: 1px solid rgba(236, 240, 241, 0.2) !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    padding: 5px 10px !important;
    appearance: none !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    transition: color 0.3s ease !important;
}

.top ul.top-right select:hover {
    color: #8e44ad !important;
}

.top ul.top-right select option {
    color: #000 !important;
}

/* Responsive Tablet */
@media only screen and (max-width: 991px) {
    .top {
        flex-direction: column !important;
        padding: 15px !important;
    }
    .top ul.top-left,
    .top ul.top-right {
        justify-content: center !important;
        margin-bottom: 10px !important;
    }
    .top ul.top-left li,
    .top ul.top-right li {
        margin-right: 15px !important;
    }
}

/* Sakrij .top na mobilnom */
@media only screen and (max-width: 767px) {
    .top {
        display: none !important;
    }
}

/* ============================
         STAKLENI DIZAJN (GLASSMORPHISM)
 ============================= */

/* Glavni kontejner sekcije */
.search-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Parallax efekat */
}

/* Overlay za bolji kontrast teksta */
.search-section .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 20, 30, 0.4); /* Malo zatamnjenje pozadine */
    z-index: 1;
}

/* Pomeramo sav sadržaj iznad overlay-a */
.search-section .container {
    position: relative;
    z-index: 2;
}

/* Stil za naslov i podnaslov */
.search-heading {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.search-subheading {
    font-size: 1.2rem;
    color: #e0e0e0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
}
.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #fffdfd !important;
	background-color: #000000ab !important;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
label {
	font-weight: 600 !important;
	color: #fff;
}
/* === GLAVNI STAKLENI EFEKAT ZA FORMU === */
.glass-form-container {
    background: rgba(10, 25, 47, 0.5);
    backdrop-filter: blur(15px); /* Magija zamućenja */
    -webkit-backdrop-filter: blur(15px); /* Podrška za Safari */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Omotač za input polja sa ikonicom */
.form-group-glass {
    position: relative;
    margin-bottom: 1rem; /* Dodaje vertikalni razmak između polja, korisno za responsive */
}

.form-group-glass .form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    z-index: 3;
}

/* === STIL ZA INPUT I SELECT POLJA === */
.glass-form-container .form-control {
    background: rgba(255, 255, 255, 0.1); /* Suptilno svetlija pozadina */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    height: 50px;
    padding-left: 40px; /* Pravi mesto za ikonicu */
    transition: all 0.3s ease;
}

/* Stil za placeholder tekst */
.glass-form-container .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

/* Efekat kada se klikne na polje */
.glass-form-container .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(135, 206, 250, 0.3); /* Svetlo plavi sjaj */
    border-color: rgba(135, 206, 250, 0.5);
    color: #fff;
}

/* === DUGME ZA PRETRAGU === */
.btn-search-glass {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(45deg, #2a99e3, #1e6fb3);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-search-glass:hover {
    transform: translateY(-3px); /* Malo se podigne */
    box-shadow: 0 8px 25px rgba(42, 153, 227, 0.6); /* Jači sjaj u boji dugmeta */
    background: linear-gradient(45deg, #3ab9ff, #2a7fcc);
}


/* ===============================================
   STILIZACIJA ZA SELECT2 PLUGIN (GLASSMORPHIC)
================================================== */

/* === NOVO: STIL ZA SELEKTOVANO STANJE (CRNA POZADINA) === */
/* Kada Select2 ima selektovanu opciju, dobija klasu .select2-container--below. 
   Ovo pravilo cilja takvo polje i postavlja mu crnu pozadinu. */
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default .select2-selection--single[aria-expanded="true"],
.select2-container--default .select2-selection--single {
    background: rgba(0, 0, 0, 0.3) !important; /* CRNA, blago prozirna pozadina */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    height: 50px !important;
    /* Padding se podešava da bi tekst bio centriran i imao mesta za ikonicu */
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    padding-left: 38px !important; /* Mesto za ikonicu */
}

/* Tekst unutar Select2 - UVEK BEO */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    line-height: normal !important; /* Resetujemo line-height da bi flex poravnanje radilo */
    padding-left: 0 !important;
}

/* Placeholder tekst u Select2 */
.select2-container--default .select2-selection--single .select2-selection__rendered[title=""] + .select2-selection__placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}


/* Strelica */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    right: 15px !important;
    display: flex;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent !important;
    top: auto !important; /* Resetujemo top poziciju */
    left: auto !important; /* Resetujemo left poziciju */
    margin: 0 !important;
    border-width: 6px 6px 0 6px !important;
}

/* Stil padajućeg menija (dropdown) */
.select2-dropdown {
    background: rgba(10, 25, 47, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: #fff;
    margin-top: 5px; /* Mali razmak od polja */
}

/* Opcije u padajućem meniju */
.select2-results__option {
    color: #e0e0e0;
    padding: 10px 12px !important;
}

/* Selektovana opcija (on hover) */
.select2-results__option--highlighted[aria-selected] {
    background-color: rgba(42, 153, 227, 0.5) !important;
    color: #fff;
}

/* Polje za pretragu unutar Select2 dropdown-a */
.select2-search--dropdown .select2-search__field {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px;
}


/* ===============================================
   RESPONSIVE STYLES (SREĐENO I SPOJENO)
================================================== */

@media only screen and (max-width: 767px) {
    .search-section {
        padding: 80px 0 50px 0 !important;
        background-attachment: scroll; /* Uklanjamo parallax na mobilnom radi boljih performansi */
    }

    .search-heading {
        font-size: 2.5rem;
    }

    .search-subheading {
        font-size: 1rem;
    }

    /* Sakrij ikonicu unutar .form-group-glass */
    .form-group-glass .form-icon {
        display: none !important;
    }

    /* Ukloni veliki padding-left na input-ima (koji je pravljen za ikonice) */
    .glass-form-container .form-control,
    .select2-container--default .select2-selection--single {
        padding-left: 20px !important;
    }
    
    .btn-search-glass {
        margin-top: 10px; /* Dodaje razmak iznad dugmeta kada se polja slože jedno ispod drugog */
    }
}

/* Glass background with blur */
.main-nav {
    position: relative !important;
    padding: 0 !important;
    background-color: rgba(0, 0, 139, 0.7) !important; /* tamno-plava sa providnošću */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    margin: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    z-index: 1000 !important;
}

/* Flex layout */
.main-nav .navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
}

/* Logo */
.main-nav .navbar-brand {
    padding-left: 15px !important;
}
.main-nav .navbar-brand img {
    height: 70px !important;
    width: auto !important;
}

/* Nav links container */
.main-nav .navbar-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-around !important;
    margin-right: 15px !important;
}

/* Nav items */
.main-nav .navbar-nav .nav-item {
    flex: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
}
.main-nav .navbar-nav .nav-item a {
    color: #ecf0f1 !important;
    font-weight: 600 !important;
    text-transform: none !important;
    padding: 10px 15px !important;
    border: none !important;               /* uklonjen okvir */
    border-radius: 5px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}
.main-nav .navbar-nav .nav-item a:hover,
.main-nav .navbar-nav .nav-item a.active {
    background-color: rgba(52, 73, 94, 0.8) !important;
    color: #ecf0f1 !important;
}

/* Dropdown menus */
.main-nav .navbar-nav .dropdown-menu {
    background-color: rgba(0, 0, 139, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
    margin-top: 0.5rem !important;
}
.main-nav .navbar-nav .dropdown-menu .dropdown-item {
    color: #ecf0f1 !important;
    padding: 10px 20px !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}
.main-nav .navbar-nav .dropdown-menu .dropdown-item:hover,
.main-nav .navbar-nav .dropdown-menu .dropdown-item:focus {
    background-color: rgba(52, 73, 94, 0.8) !important;
    color: #ecf0f1 !important;
}

/* Sticky (fixed) on Desktop */
@media (min-width: 1024px) {
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
    }
    body {
        padding-top: 70px !important; /* prilagodi visinu .main-nav */
    }
}

/* Sticky on Mobile */
@media (max-width: 768px) {
    .main-nav {
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
    }
}

/* Hide top bar on Mobile */
@media (max-width: 767px) {
    .top {
        display: none !important;
    }
}


/* Sidepanel */
.sidepanel {
    height: 100% !important;
    width: 0 !important;
    position: fixed !important;
    z-index: 1 !important;
    top: 0 !important;
    left: 0 !important;
    background-color: #2c3e50 !important; /* Tamnoplava pozadina za sklad */
    overflow-x: hidden !important;
    padding-top: 60px !important;
    border-top-right-radius: 8px !important; /* Zaobljeni uglovi za moderan izgled */
    border-bottom-right-radius: 8px !important;
    transition: width 0.5s ease !important;
}

.sidepanel a {
    padding: 10px 30px !important;
    text-decoration: none !important;
    font-size: 1.1em !important;
    color: #bdc3c7 !important; /* Svetlosiva za tekst linkova */
    display: block !important;
    border-radius: 6px !important; /* Zaobljeni uglovi na linkovima */
    margin: 5px 0 !important; /* Razmak između linkova */
    transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s ease !important;
}

.sidepanel a:hover {
    color: #8e44ad !important; /* Ljubičasta na hover */
    background-color: #34495e !important; /* Svetlija tamnoplava na hover */
    padding-left: 40px !important; /* Blagi efekat pomeranja teksta pri hover-u */
}

.sidepanel .closebtn {
    position: absolute !important;
    top: 10px !important;
    right: 25px !important;
    font-size: 1.8em !important;
    color: #ecf0f1 !important; /* Svetlosiva za dugme zatvaranja */
    cursor: pointer !important;
    transition: color 0.3s ease !important;
}

.sidepanel .closebtn:hover {
    color: #8e44ad !important; /* Ljubičasta boja na hover za dugme zatvaranja */
}

.openbtn {
    font-size: 1em !important;
    cursor: pointer !important;
    background-color: #34495e !important; /* Tamnija plava pozadina */
    color: #ffffff !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 5px !important;
    transition: background-color 0.3s ease !important;
}

.openbtn:hover {
    background-color: #3b5998 !important; /* Svetlija plava na hover */
}

/* =============================================== */
/* ================= Mobile Menu ================= */
/* =============================================== */
@media only screen and (max-width: 991px) {
  /* Smanjena providnost sa 60% (0.6) na 50% (0.5) */
  .mobile-nav,
  .mean-container .mean-bar {
    background-color: rgba(0, 41, 82, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* Logo pozicioniraj pomalo u desno, da bude pored hamburgera */
  .mobile-nav .logo,
  .mean-container .logo {
    position: absolute !important;
    top: 12px !important;
    left: 65px !important; /* prilagodi razmak po želji */
    z-index: 1005 !important;
  }

  /* Hamburger dugme (meanmenu-reveal) na levu stranu i belo */
  .mean-container a.meanmenu-reveal {
    left: 15px !important;
    right: auto !important;
    color: #fff !important;
    background: none !important;
  }
  .mean-container a.meanmenu-reveal span {
    background-color: #fff !important;
  }

  /* Visina loga */
  .mobile-nav img,
  .mean-container img {
    height: 40px !important;
    width: auto !important;
  }
}

/* Popular Brand */
.popular-brand {
    padding-top: 50px !important;
    overflow: hidden !important;
}

.popular-brand .heading {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.popular-brand .heading h2 {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important; /* Tamnoplava boja */
    margin-top: 0 !important;
}

.popular-brand .heading h3 {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #8c8c8c !important;
}

.popular-brand .popular-brand-item {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    padding: 10px !important;
    color: #fff !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    margin-bottom: 25px !important;
    height: 200px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background-color: #34495e !important; /* Svetlija tamnoplava pozadina */
    border: 1px solid rgba(236, 240, 241, 0.2) !important; /* Svetlosivi okvir */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important; /* Blaga senka */
}

.popular-brand .popular-brand-item:hover {
    margin-top: -10px !important;
    background-color: #3b5998 !important; /* Svetlija nijansa na hover */
}

.popular-brand .popular-brand-item .bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(38, 38, 38, 0.49) 99%) !important;
    border-radius: 8px !important;
}

.popular-brand .popular-brand-item .icon {
    font-size: 30px !important;
    margin-bottom: 20px !important;
    color: #ecf0f1 !important; /* Svetlosiva boja */
    position: relative !important;
}

.popular-brand .popular-brand-item .text {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
}

.popular-brand .popular-brand-item .text h4 {
    color: #ecf0f1 !important; /* Svetlosiva boja */
    font-weight: 700 !important;
    font-size: 22px !important;
    margin-bottom: 5px !important;
}

.popular-brand .popular-brand-item .text p {
    color: #ecf0f1 !important; /* Svetlosiva boja */
    font-size: 15px !important;
    margin-bottom: 10px !important;
}

.popular-brand .popular-brand-item a {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

@media only screen and (max-width: 1199px) {
    .popular-brand .popular-brand-item {
        height: 170px !important;
    }
}

@media only screen and (max-width: 991px) {
    .popular-brand .popular-brand-item {
        height: 200px !important;
    }
}

@media only screen and (max-width: 767px) {
    .popular-brand .popular-brand-item {
        height: 150px !important;
    }
}

@media only screen and (max-width: 575px) {
    .popular-brand .popular-brand-item {
        height: 300px !important;
    }
}

@media only screen and (max-width: 460px) {
    .popular-brand .popular-brand-item {
        height: 260px !important;
    }
}




.popular-city {
    padding: 80px 0 60px 0 !important;
    position: relative !important;
    background-color: #f0f2f5; 
    overflow: hidden !important;
}

.popular-city::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0;
    width: 100% !important; height: 100% !important;
    z-index: 0 !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('https://autooglasi.online/uploads/site_photos/bg1.png');
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    filter: blur(5px) !important;
    transform: scale(1.05);
}

.popular-city .container, 
.popular-city .heading {
    position: relative;
    z-index: 1;
}

.popular-city .heading h2 {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #1d2b38 !important;
    margin-top: 0 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.popular-city .heading h3 {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #34495e !important;
}

/* --- KARTICA SA EFEKTOM STAKLA I ZLATNIM OKVIROM --- */
.popular-city .popular-city-item {
    position: relative !important;
    z-index: 1 !important;
    margin-bottom: 30px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: rgba(44, 62, 80, 0.35) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    
    /* Zlatni okvir */
    border: 2px solid transparent !important;
    border-image-source: linear-gradient(160deg, #F7971E, #FFD200, #F7971E) !important;
    border-image-slice: 1 !important;
}

.popular-city .popular-city-item:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35) !important;
}

.popular-city .popular-city-item .photo {
    position: relative !important;
    overflow: hidden !important;
    border-top-left-radius: 0 !important; /* Uklanjamo radius da se slika lepo spoji sa okvirom */
    border-top-right-radius: 0 !important;
}

.popular-city .popular-city-item .photo img {
    width: 100% !important;
    height: 170px !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.5s ease !important;
    border-radius: 0 !important;
}

.popular-city .popular-city-item:hover .photo img {
    transform: scale(1.15) !important;
    rotate: 0deg !important; /* Uklanjamo rotaciju */
}

.popular-city .popular-city-item .text {
    background-color: transparent !important;
    padding: 20px !important;
    text-align: center;
}

.popular-city .popular-city-item .text h4 {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-bottom: 8px !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.popular-city .popular-city-item:hover h4 {
    color: #ffffff !important; /* Na hover ostaje bela */
}

.popular-city .popular-city-item .text p {
    color: #ecf0f1 !important;
    font-size: 14px !important;
    margin-bottom: 0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.popular-city .popular-city-item a {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2;
}

.popular-city-carousel .owl-dots {
    text-align: center !important;
    margin-top: 20px !important;
}

.popular-city-carousel .owl-dots .owl-dot {
    width: 10px !important;
    height: 10px !important;
    background: rgba(29, 43, 56, 0.4) !important;
    border-radius: 50% !important;
    display: inline-block !important;
    margin: 0 5px !important;
    border: none !important;
    transition: all 0.4s ease !important;
}

.popular-city-carousel .owl-dots .owl-dot.active {
    width: 30px !important;
    height: 10px !important;
    border-radius: 5px !important;
    background: #1d2b38 !important;
    border: none !important;
}

/* Uklanjanje fiksnih visina za City kartice */
@media only screen and (max-width: 1199px) { .popular-city .popular-city-item { height: auto !important; } }
@media only screen and (max-width: 991px) { .popular-city .popular-city-item { height: auto !important; } }
@media only screen and (max-width: 767px) { .popular-city .popular-city-item { height: auto !important; } }
/* ========================================= */
/*      LISTING - STAKLENI REDIZAJN          */
/* ========================================= */

/* ========================================= */
/*      LISTING - ZLATNI OKVIR UPDATE        */
/* ========================================= */

/* Stil za celu listing sekciju ostaje isti */
.listing-section {
    padding: 80px 0 60px 0 !important;
    position: relative !important;
    background-color: #f0f2f5; 
    overflow: hidden !important;
}

.listing-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0;
    width: 100% !important; height: 100% !important;
    z-index: 0 !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('https://autooglasi.online/uploads/site_photos/bg2.png');
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    filter: blur(5px) !important;
    transform: scale(1.05);
}

.listing-section .container, 
.listing-section .heading {
    position: relative;
    z-index: 1;
}

/* Flexbox za jednaku visinu kartica */
.listing .row { display: flex; flex-wrap: wrap; }
.listing .col-md-4 { display: flex; flex-direction: column; }

/* 
===================================================
   IZMENA SA ZLATNIM OKVIROM JE U BLOKU ISPOD
===================================================
*/

/* --- Glavna Listing kartica sa zlatnim okvirom --- */
.listing .listing-item {
    position: relative !important;
    margin-bottom: 30px !important;
    
    /* Stakleni stil ostaje isti */
    background: rgba(10, 25, 47, 0.5) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    
    border-radius: 20px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
    overflow: hidden !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;

    /* Flexbox za jednaku visinu */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;

    /* 
      NOVO: Dodajemo elegantan zlatni okvir.
      Ovo boji SAMO okvir, ne i pozadinu.
    */
    border: 2px solid transparent !important;
    border-image-source: linear-gradient(160deg, #F7971E, #FFD200, #F7971E) !important;
    border-image-slice: 1 !important;
}

/* --- Ostatak koda za .listing je isti kao pre --- */

.listing .listing-item .text { flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.listing .listing-item:hover { transform: translateY(-10px) !important; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45) !important; }
.listing .listing-item .photo { position: relative !important; overflow: hidden !important; border-radius: 0 !important; }
.listing .listing-item .photo img { width: 100% !important; height: 200px !important; object-fit: cover !important; transition: transform 0.5s ease !important; border-radius: 0 !important; }
.listing .listing-item:hover .photo img { transform: scale(1.1) !important; }
.listing .listing-item .text { background-color: transparent !important; padding: 20px 15px !important; color: #ffffff !important; text-align: left !important; border-radius: 0 !important; }
.listing .listing-item .text h3 { font-size: 20px !important; font-weight: 700 !important; margin-bottom: 8px !important; color: #ffffff !important; text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5) !important; }
.listing .listing-item .text p { font-size: 14px !important; color: #bdc3c7 !important; margin: 0 0 15px 0 !important; }
.listing .listing-item .text .type-price .price { color: #ffffff !important; font-weight: 700 !important; font-size: 24px !important; text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5) !important; }
.listing .listing-item .bed-bath-size { border-top: 1px solid rgba(255, 255, 255, 0.1) !important; padding-top: 15px !important; margin-top: 15px !important; }
.listing .listing-item .bed-bath-size .item .icon i { color: #bdc3c7 !important; }
.listing .listing-item .bed-bath-size .item .text { padding: 0 !important; color: #ecf0f1 !important; font-size: 14px !important; }
.listing .listing-item .photo .brand a, .listing .listing-item .photo .featured-text { border: none !important; border-radius: 8px !important; background: linear-gradient(45deg, #2a99e3, #1e6fb3) !important; color: #fff !important; font-weight: 600; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important; transition: all 0.3s ease !important; }
.listing .listing-item .photo .brand a:hover, .listing .listing-item .photo .featured-text:hover { transform: scale(1.05) !important; box-shadow: 0 6px 20px rgba(42, 153, 227, 0.5) !important; }
.listing .listing-item .photo .featured-text { padding: 5px 15px !important; font-size: 12px !important; transform: rotate(45deg) !important; }
.listing .listing-item .photo .brand a { padding: 4px 10px !important; font-size: 14px !important; }
.listing .listing-item .photo .wishlist i { color: #fff !important; font-size: 28px !important; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important; transition: transform 0.3s ease !important; }
.listing .listing-item .photo .wishlist:hover i { transform: scale(1.2) !important; color: #ff4757 !important; }



/* ========================================= */
/*      PRICING - "BRUKA" REDIZAJN v2.0      */
/* ========================================= */

/* --- Glavni kontejner sa vibrantnom pozadinom --- */
.pricing {
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;

    /* 
      NOVA POZADINA: Svetli, apstraktni gradijent.
      Ovo daje energiju i omogućava da se staklo bolje vidi.
    */
    background: #f0f2f5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpolygon fill='%23e8eaf2' points='1600 160 0 460 0 350 1600 50'/%3E%3Cpolygon fill='%23e1e3ef' points='1600 260 0 560 0 450 1600 150'/%3E%3Cpolygon fill='%23d9dbeb' points='1600 360 0 660 0 550 1600 250'/%3E%3Cpolygon fill='%23d2d4e8' points='1600 460 0 760 0 650 1600 350'/%3E%3Cpolygon fill='%23cbcde5' points='1600 800 0 800 0 750 1600 450'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
}

/* --- Osnovna "Staklena" kartica (svetla varijanta) --- */
.pricing .card {
    background: rgba(255, 255, 255, 0.6) !important; /* Svetlija, prozirna pozadina */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.2) !important; /* Nežna, plavičasta senka */
    
    padding: 35px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; /* Dodajemo "bouncy" tranziciju */

    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- Naslov kartice --- */
.pricing .card-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1a2551 !important; /* Tamno plava za kontrast */
    text-align: center;
    margin-bottom: 25px !important;
    text-transform: uppercase;
    letter-spacing: .1rem !important;
}

/* --- Cena sa novim gradijentom --- */
.pricing .card-price {
    font-size: 56px !important;
    font-weight: 800 !important;
    margin: 0 auto 25px auto !important;
    text-align: center;
    color: #1a2551 !important; /* Glavna boja ako gradijent nije podržan */

    /* Novi, energični gradijent */
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.pricing .card-price .period {
    font-size: 16px !important;
    font-weight: 500;
    color: #5a678b !important; /* Tamno siva/plava */
    -webkit-text-fill-color: initial; /* Resetovanje gradijenta */
}

/* --- Lista karakteristika --- */
.pricing ul {
    list-style: none; padding-left: 0; margin-bottom: 30px !important; flex-grow: 1;
}

.pricing ul li {
    margin-bottom: 15px !important;
    color: #3e4c74 !important; /* Tamnija boja teksta za čitljivost */
    font-size: 16px !important;
    padding-left: 30px;
    position: relative;
}

.pricing ul li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    color: #2575fc; /* Plava boja iz gradijenta */
    font-weight: 900;
}

.pricing .text-muted {
    color: #9aabbb !important;
    text-decoration: line-through;
}

/* === "FEATURED" KARTICA SA UPADLJIVIM OKVIROM === */
/* Dodajte klasu "featured" na karticu koju želite da istaknete */
.pricing .card.featured {
    transform: scale(1.05);
    z-index: 2;
    background: rgba(255, 255, 255, 0.7) !important;
    
    /* Novi gradijent border koji menja boju */
    border: 2px solid transparent !important;
    background-clip: padding-box !important; /* Važan trik */
    border-image: linear-gradient(135deg, #6a11cb, #2575fc, #f94877) 1;
    
    /* Jaka senka u boji gradijenta */
    box-shadow: 0 10px 40px rgba(37, 117, 252, 0.3) !important;
}


/* --- Dugmad --- */
.pricing .btn {
    font-size: 16px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    padding: 14px 20px !important;
    transition: all 0.3s ease !important;
    color: #2575fc !important;
    background: rgba(37, 117, 252, 0.1) !important; /* Blaga plava pozadina */
    border: 1px solid rgba(37, 117, 252, 0.3) !important;
    margin-top: auto;
}

.pricing .btn:hover {
    background: #2575fc !important;
    color: #ffffff !important;
    box-shadow: 0 5px 20px rgba(37, 117, 252, 0.4) !important;
    transform: translateY(-2px);
}

/* Dugme na "Featured" kartici */
.pricing .card.featured .btn {
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(37, 117, 252, 0.4);
}


/* --- Hover efekti --- */
@media (min-width: 992px) {
    .pricing .card:not(.featured):hover {
        transform: translateY(-15px) scale(1.03); /* Malo jači hover efekat */
        box-shadow: 0 15px 40px rgba(100, 108, 143, 0.25) !important;
    }
}
/* ========================================= */
/*      FOOTER - "BRUKA" REDIZAJN v2.0       */
/* ========================================= */

/* --- Glavni kontejner futera --- */
.footer-area {
    margin-top: 50px !important;
    padding: 80px 0 0 0 !important; /* Povećavamo gornji padding, donji uklanjamo jer ga dodajemo na .copyright */
    position: relative !important;
    overflow: hidden !important;
    
    /* 
      Ista svetla, apstraktna pozadina kao na 'pricing' sekciji za konzistentnost.
      Opciono, možete zameniti sa vašom 'footer_bg.jpg' ako želite.
    */
    background: #f0f2f5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpolygon fill='%23e8eaf2' points='1600 160 0 460 0 350 1600 50'/%3E%3Cpolygon fill='%23e1e3ef' points='1600 260 0 560 0 450 1600 150'/%3E%3Cpolygon fill='%23d9dbeb' points='1600 360 0 660 0 550 1600 250'/%3E%3Cpolygon fill='%23d2d4e8' points='1600 460 0 760 0 650 1600 350'/%3E%3Cpolygon fill='%23cbcde5' points='1600 800 0 800 0 750 1600 450'/%3E%3C/g%3E%3C/svg%3E") !important;
    background-size: cover !important;
    background-attachment: scroll !important; /* Uklanjamo 'fixed' da ne ometa skrolovanje */

    color: #3e4c74 !important; /* Glavna boja teksta je tamno plava/siva */
}

/* Uklanjamo stari ::before overlay */
.footer-area:before {
    display: none !important;
}

/* Glavni "stakleni" panel unutar futera */
.footer-glass-panel {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    margin-bottom: 60px;
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.2) !important;
}

/* --- Stilovi za elemente unutar "staklenog" panela --- */
.footer-item, .footer-social-link, .footer-contact {
    position: relative !important;
    z-index: 2 !important;
    margin-bottom: 30px; /* Razmak između kolona na mobilnom */
}

/* Naslovi u futeru */
.footer-item h2, .footer-social-link h2 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1a2551 !important; /* Tamno plava za kontrast */
    margin: 0 0 20px !important;
    text-transform: uppercase;
    letter-spacing: .05rem;
}

/* Paragraf teksta */
.footer-item p {
    line-height: 1.7 !important;
    color: #3e4c74 !important;
    margin: 0 !important;
}

/* Linkovi u listama */
.footer-item ul li {
    list-style-type: none !important;
    margin-bottom: 10px !important;
}

.footer-item ul li a {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #2575fc !important; /* Energično plava za linkove */
    transition: all 0.3s ease !important;
    position: relative;
    padding-left: 0 !important;
}

.footer-item ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    display: block;
    margin-top: 2px;
    right: 0;
    background: #6a11cb; /* Ljubičasta iz palete */
    transition: width 0.3s ease;
}

.footer-item ul li a:hover::after {
    width: 100%;
    left: 0;
    background: #6a11cb;
}

.footer-item ul li a:hover {
    color: #6a11cb !important;
}

/* Uklanjamo stare FontAwesome strelice */
.footer-item ul.fmain li { padding-left: 0 !important; }
.footer-item ul.fmain li:before { display: none !important; }

/* --- Društvene mreže --- */
.footer-social-link ul li {
    display: inline-block !important;
    margin-right: 10px !important;
}

.footer-social-link ul li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    color: #6a11cb !important;
    border: 2px solid rgba(106, 17, 203, 0.2) !important;
    background: rgba(106, 17, 203, 0.1) !important;
    transition: all 0.3s ease !important;
    border-radius: 14px !important; /* Manje zaobljenje za moderniji izgled */
}

.footer-social-link ul li a:hover {
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    color: #fff !important;
    border-color: transparent !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 117, 252, 0.3);
}

/* --- Kontakt informacije --- */
.footer-contact ul li {
    position: relative !important;
    padding-left: 35px !important;
    font-size: 16px !important;
    margin-bottom: 15px !important;
    color: #3e4c74 !important;
}

.footer-contact ul li:before {
    font-family: "Font Awesome 5 Free" !important;
    position: absolute !important;
    left: 0 !important; top: 0;
    font-size: 18px !important;
    font-weight: 900 !important;
    color: #2575fc !important; /* Plava boja za ikonice */
}

/* --- Copyright sekcija --- */
.copyright {
    text-align: center;
    color: #5a678b !important; /* Tamno siva/plava */
    border-top: 1px solid rgba(100, 108, 143, 0.15) !important;
    margin-top: 0 !important;
    padding: 30px 20px !important;
    background: transparent !important; /* Nema pozadinu, deo je .footer-area */
    position: relative;
    z-index: 2;
}

.copyright p {
    margin: 0;
    font-weight: 500;
}
/* ========================================= */
/*      PAGE BANNER - "BRUTALNI" REDIZAJN    */
/*         (sa poboljšanom senkom)          */
/* ========================================= */

/* --- Glavni kontejner banera --- */
.page-banner {
    background-image: none !important;
    background-color: #f0f2f5 !important;
    position: relative !important;
    padding: 100px 0 !important;
    text-align: center !important;
    overflow: hidden !important;
}

/* Pseudo-element za pozadinsku sliku i blur efekat */
.page-banner::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    
    background-image: url('../../images/banner_bg.jpg') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;

    filter: blur(5px) !important;
    background-color: rgba(200, 210, 230, 0.4) !important;
    background-blend-mode: overlay;

    transform: scale(1.05);
    z-index: 0 !important;
}


/* === Stakleni naslov sa poboljšanom senkom === */
.page-banner h1 {
    display: inline-block !important;
    position: relative !important;
    z-index: 2 !important;
    margin: 0 !important;
    
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 20px !important;
    
    /* POBOLJŠANA SENKA ZA VEĆU DUBINU */
    box-shadow: 0 12px 35px -5px rgba(50, 65, 111, 0.25) !important;
    
    color: #1a2551 !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5) !important;

    padding: 30px 50px !important;
    margin-bottom: 25px !important; /* Razmak između naslova i breadcrumb-a */
}

/* Stari .page-banner-bg selektor više nije potreban. */
.page-banner .page-banner-bg {
    display: none !important;
}


/* === Redizajnirani Breadcrumb (navigaciona putanja) === */
.page-banner nav {
    padding: 0 !important;
    position: relative !important;
    z-index: 2 !important;
    display: flex;
    justify-content: center;
}

.page-banner .breadcrumb {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 50px !important;
    
    padding: 8px 25px !important;
    margin: 0 !important;
    box-shadow: 0 4px 15px rgba(100, 108, 143, 0.1);
}

.page-banner .breadcrumb-item {
    color: #3e4c74 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

.page-banner .breadcrumb-item a {
    color: #1a2551 !important;
    transition: color 0.3s ease !important;
}

.page-banner .breadcrumb-item a:hover {
    color: #2575fc !important;
}

.page-banner .breadcrumb-item::before {
    color: #5a678b !important;
    font-weight: 700;
}


/* === Responsive Adjustments === */
@media only screen and (max-width: 991px) {
    .page-banner {
        padding: 80px 0 !important;
    }
    .page-banner h1 {
        font-size: 36px !important;
        padding: 25px 40px !important;
    }
}
@media only screen and (max-width: 575px) {
    .page-banner h1 {
        font-size: 28px !important;
        padding: 20px 30px !important;
    }
    .page-banner .breadcrumb {
        padding: 6px 15px !important;
    }
    .page-banner .breadcrumb-item {
        font-size: 13px !important;
    }
}


/* === Page Content === */
.page-content {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    overflow: hidden !important;
    
    background: #f0f2f5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpolygon fill='%23e8eaf2' points='1600 160 0 460 0 350 1600 50'/%3E%3Cpolygon fill='%23e1e3ef' points='1600 260 0 560 0 450 1600 150'/%3E%3Cpolygon fill='%23d9dbeb' points='1600 360 0 660 0 550 1600 250'/%3E%3Cpolygon fill='%23d2d4e8' points='1600 460 0 760 0 650 1600 350'/%3E%3Cpolygon fill='%23cbcde5' points='1600 800 0 800 0 750 1600 450'/%3E%3C/g%3E%3C/svg%3E") !important;
    background-size: cover;
}
/* Blog Page */
.blog-item {
    margin-bottom: 50px !important;
    background-color: #34495e !important; /* Tamnoplava pozadina */
    border-radius: 8px !important;
    padding: 20px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    color: #ecf0f1 !important; /* Svetlosivi tekst */
}

.blog-item .text h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: #ffffff !important;
}

.blog-item .text h2 a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.blog-item .text h2 a:hover {
    color: #e00445 !important; /* Crvena na hover */
}

.blog-item .featured-photo {
    margin-bottom: 15px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}

.blog-item .featured-photo img {
    width: 100% !important;
    height: 230px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
}

/* Blog Item Single */
.blog-item-single .featured-photo {
    margin-bottom: 15px !important;
}

.blog-item-single .featured-photo img {
    width: 100% !important;
    height: auto !important;
    border-radius: 6px !important;
}

.blog-item-single .text h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    color: #ffffff !important;
}

.blog-item-single .text h2 a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.blog-item-single .text h2 a:hover {
    color: #e00445 !important;
}

/* ========================================= */
/*      SIDEBAR - "BRUTALAN" REDIZAJN        */
/* ========================================= */

/* Uklanjamo pozadinu sa glavnog sidebar kontejnera, jer će svaki widget biti poseban */
.sidebar {
    background: transparent !important;
}

/* --- Osnovni stil za svaki "stakleni" widget --- */
.sidebar .widget {
    background: rgba(255, 255, 255, 0.65) !important; /* Svetli glassmorphism */
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.15) !important;
    
    padding: 25px !important;
    margin-bottom: 35px !important;
    color: #3e4c74 !important;
    overflow: hidden; /* Osigurava da se sadržaj lepo uklopi */
}

/* --- Naslov Widgeta --- */
.sidebar .widget h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin: 0 0 25px 0 !important;
    padding-bottom: 15px !important;
    color: #1a2551 !important;
    border-bottom: 2px solid;
    /* Energični gradijent za liniju ispod naslova */
    border-image-source: linear-gradient(90deg, #6a11cb, #2575fc) !important;
    border-image-slice: 1 !important;
}


/* --- Widget tip 1: Lista kategorija/linkova --- */
.sidebar .widget .type-1 ul li {
    list-style-type: none !important;
    padding-left: 0 !important; /* Uklanjamo stari padding */
    margin-bottom: 12px !important;
}

/* Uklanjamo stari FontAwesome pseudo-element */
.sidebar .widget .type-1 ul li:before {
    display: none !important;
}

.sidebar .widget .type-1 ul li a {
    color: #3e4c74 !important;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px !important;
    border-radius: 12px;
    background: rgba(37, 117, 252, 0.08); /* Veoma suptilna plava pozadina */
    transition: all 0.3s ease !important;
}

/* Dodajemo novu, modernu strelicu */
.sidebar .widget .type-1 ul li a::after {
    content: '\f061'; /* FontAwesome strelica desno */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #ffffff;
}

.sidebar .widget .type-1 ul li a:hover {
    color: #ffffff !important;
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
    transform: translateY(-2px);
}

.sidebar .widget .type-1 ul li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}


/* --- Widget tip 2: Lista sa slikama (npr. popularni postovi) --- */
.sidebar .widget .type-2 ul li {
    list-style-type: none !important;
    position: relative !important;
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid rgba(100, 108, 143, 0.15) !important;
    display: flex;
    align-items: center;
}
.sidebar .widget .type-2 ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar .widget .type-2 img {
    width: 60px !important; height: 60px !important;
    margin-right: 15px !important;
    border-radius: 12px !important;
    object-fit: cover;
    flex-shrink: 0; /* Sprečava smanjivanje slike */
}

.sidebar .widget .type-2 ul li a {
    width: auto !important;
    color: #1a2551 !important;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    transition: color 0.3s ease !important;
}

.sidebar .widget .type-2 ul li a:hover {
    color: #2575fc !important;
}


/* --- Widget za Pretragu --- */
.sidebar .widget .search .input-group {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(37, 117, 252, 0.3);
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.1);
}
.sidebar .widget .search .form-control {
    border: none !important;
    height: 48px;
    background-color: rgba(255,255,255,0.5) !important;
    color: #1a2551 !important;
}
.sidebar .widget .search .form-control:focus {
    box-shadow: none !important;
    background-color: #fff !important;
}

.sidebar .widget .search button {
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    border: 0 !important;
    width: 50px !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
}
.sidebar .widget .search button:hover {
    opacity: 0.9;
}


/* --- Widget tip 3: Dugme --- */
.sidebar .widget .type-3 {
    text-align: center;
}
.sidebar .widget .type-3 button {
    border: 0 !important;
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    box-shadow: 0 4px 20px rgba(37, 117, 252, 0.4);
    border-radius: 14px !important;
    padding: 14px 40px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.sidebar .widget .type-3 button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.6) !important;
}


/* --- Widget za Detalje Projekta --- */
.sidebar .widget .project-detail .item {
    margin-bottom: 20px !important;
}
.sidebar .widget .project-detail .item:last-child {
    margin-bottom: 0;
}

.sidebar .widget .project-detail .item h4 {
    color: #1a2551 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
}

.sidebar .widget .project-detail .item p {
    color: #3e4c74 !important;
    font-size: 15px !important;
}
/* Portfolio Carousel */
.portfolio-carousel {
    overflow: hidden !important;
    margin-top: 30px !important;
    padding-bottom: 20px !important;
}

.portfolio-photo-item {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    height: 370px !important;
    position: relative !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important; /* Blaga senka */
}

.portfolio-carousel .owl-nav .owl-prev,
.portfolio-carousel .owl-nav .owl-next {
    text-align: center !important;
    font-size: 18px !important;
    position: absolute !important;
    top: 50% !important;
    width: 40px !important;
    height: 50px !important;
    line-height: 48px !important;
    background: #e00445 !important; /* Crvena pozadina */
    color: #ffffff !important;
    margin-top: -25px !important;
    transition: background 0.3s ease !important;
    border-radius: 5px !important;
}

.portfolio-carousel .owl-nav .owl-prev {
    left: 0 !important;
}

.portfolio-carousel .owl-nav .owl-next {
    right: 0 !important;
}

.portfolio-carousel .owl-nav .owl-prev:hover,
.portfolio-carousel .owl-nav .owl-next:hover {
    background: #2c3e50 !important; /* Tamnoplava boja na hover */
    color: #ffffff !important;
}

.single-portfolio .iframe-container {
    overflow: hidden !important;
    clear: both !important;
}

.single-portfolio iframe {
    width: 100% !important;
    height: 400px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important; /* Blaga senka */
}

.portfolio-carousel .p-item {
    position: relative !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease !important;
}

.portfolio-carousel .p-item:hover {
    transform: scale(1.02) !important; /* Blagi zoom efekat na hover */
}

.portfolio-carousel .p-item .p-item-bg {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    background: rgba(44, 62, 80, 0.8) !important; /* Tamnoplava providna pozadina */
    z-index: 9 !important;
    transition: opacity 0.4s ease !important;
}

.portfolio-carousel .p-item:hover .p-item-bg {
    opacity: 0.6 !important;
}

.portfolio-carousel .p-item .plus-icon {
    visibility: hidden !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    line-height: 100% !important;
    text-align: center !important;
    z-index: 99 !important;
    font-size: 30px !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.portfolio-carousel .p-item:hover .plus-icon {
    visibility: visible !important;
    transition: opacity 0.3s ease !important;
}

/* Comment Section */
.comment h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important; /* Tamnoplava boja */
    margin-bottom: 20px !important;
}

.comment button {
    border: 0 !important;
    background: #e00445 !important; /* Crvena pozadina */
    border-radius: 8px !important;
    padding: 10px 30px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    transition: background 0.3s ease !important;
}

.comment button:hover {
    background: #2c3e50 !important; /* Tamnoplava boja na hover */
}

.comment-item {
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: flex-start !important;
    background-color: #f8f9fa !important;
    border-radius: 8px !important;
    padding: 15px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.comment-item .photo {
    width: 70px !important;
    margin-right: 15px !important;
}

.comment-item .photo img {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    border: 2px solid #ecf0f1 !important;
}

.comment-item .text h4 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 5px !important;
}

.comment-item .text .date {
    font-size: 14px !important;
    color: #848484 !important;
    margin-bottom: 10px !important;
}

.comment-item .text .des {
    font-size: 14px !important;
    color: #555 !important;
}


/* Career Detail */
.career-detail .item {
    margin-bottom: 30px !important;
    background-color: #2c3e50 !important; /* Tamnoplava pozadina */
    padding: 20px !important;
    border-radius: 8px !important;
    color: #ecf0f1 !important; /* Svetlosivi tekst */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important; /* Blaga senka */
}

.career-detail .item h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

.career-detail .item p {
    font-size: 16px !important;
    color: #c7c7c7 !important;
}

.career-detail .item ul li {
    list-style-type: none !important;
    position: relative !important;
    padding-left: 25px !important;
    color: #ecf0f1 !important;
}

.career-detail .item ul li:before {
    content: '\f105' !important;
    font-family: 'Font Awesome 5 Free' !important;
    position: absolute !important;
    left: 10px !important;
    top: 0 !important;
    color: #e00445 !important; /* Crvena ikona */
    font-weight: 600 !important;
}

/* FAQ Section */
.faq {
    background: #34495e !important; /* Tamnoplava pozadina */
    padding: 30px !important;
    border-radius: 8px !important;
    color: #ecf0f1 !important;
}

.faq .panel {
    box-shadow: none !important;
    border-radius: 8px !important;
    margin-bottom: 15px !important;
    overflow: hidden !important;
    border: 1px solid #3b4a5e !important; /* Tamniji okvir */
}

.faq .panel-default>.panel-heading {
    background: #3b4a5e !important; /* Tamnija plava pozadina */
    color: #ffffff !important;
    padding: 0 !important;
    border-radius: 8px 8px 0 0 !important;
    position: relative !important;
}

.faq .panel-group .panel-heading a:after {
    content: '\f068' !important;
    font-family: 'Font Awesome 5 Free' !important;
    position: absolute !important;
    font-weight: 600 !important;
    right: 20px !important;
    top: 10px !important;
    font-size: 14px !important;
    color: #ffffff !important;
}

.faq .panel-group .panel-heading a.collapsed:after {
    content: '\f067' !important;
    color: #ffffff !important;
}

.faq h4.panel-title {
    margin-bottom: 0 !important;
    border: 1px solid #3b4a5e !important;
    background-color: #3b4a5e !important;
    color: #ffffff !important;
    border-radius: 8px !important;
}

.faq h4.panel-title a {
    display: block !important;
    padding: 10px 15px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #e00445 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.faq h4.panel-title a:hover {
    color: #ffffff !important;
}

.faq .panel-body {
    background: #2c3e50 !important;
    padding: 15px !important;
    color: #ecf0f1 !important;
    border: 1px solid #3b4a5e !important;
    border-radius: 0 0 8px 8px !important;
}

/* ========================================= */
/*      KONTAKT & GALERIJE - BRUTALNI REDIZAJN       */
/* ========================================= */

/* --- Zajednička pozadina za celu kontaktnu/galerijsku sekciju --- */
/* Pretpostavka je da se ovi elementi nalaze unutar sekcije sa klasom .page-content ili slično. */
/* Ako ne, dodajte ovu pozadinu na body ili odgovarajući wrapper. */
.page-content {
    background: #f0f2f5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpolygon fill='%23e8eaf2' points='1600 160 0 460 0 350 1600 50'/%3E%3Cpolygon fill='%23e1e3ef' points='1600 260 0 560 0 450 1600 150'/%3E%3Cpolygon fill='%23d9dbeb' points='1600 360 0 660 0 550 1600 250'/%3E%3Cpolygon fill='%23d2d4e8' points='1600 460 0 760 0 650 1600 350'/%3E%3Cpolygon fill='%23cbcde5' points='1600 800 0 800 0 750 1600 450'/%3E%3C/g%3E%3C/svg%3E") !important;
    background-size: cover;
}


/* === KONTAKT INFO KARTICE (.contact-item) === */
.contact-item {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.15) !important;
    
    padding: 30px !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(100, 108, 143, 0.25) !important;
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 3rem !important;
    /* Energični gradijent za ikonicu */
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.contact-text h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    color: #1a2551 !important;
}

.contact-text p {
    margin: 0 !important;
    color: #3e4c74 !important;
    font-size: 15px;
    line-height: 1.6;
}


/* === KONTAKT FORMA (.contact-form) === */
h4.contact-form-title {
    font-weight: 700 !important;
    font-size: 32px !important;
    color: #1a2551 !important;
    margin-bottom: 30px;
}

/* Stil za sva input polja i textarea */
.contact-form .form-control {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(100, 108, 143, 0.3) !important;
    border-radius: 14px !important;
    color: #1a2551 !important;
    height: 55px !important;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
}
.contact-form textarea.form-control {
    height: 180px !important;
    padding-top: 20px !important;
}

.contact-form .form-control::placeholder {
    color: #5a678b !important;
}

.contact-form .form-control:focus {
    background: #ffffff !important;
    border-color: #2575fc !important;
    box-shadow: 0 0 15px rgba(37, 117, 252, 0.2) !important;
}

/* Dugme za slanje poruke */
.contact-form .btn,
.contact-form button {
    border: 0 !important;
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    box-shadow: 0 4px 20px rgba(37, 117, 252, 0.4) !important;
    border-radius: 14px !important;
    padding: 15px 40px !important;
    font-weight: 700 !important;
    font-size: 16px;
    text-transform: none !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.contact-form .btn:hover,
.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.6) !important;
    background: linear-gradient(45deg, #7822d6, #3c89ff) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

/* === MAPA (.map-area) === */
.map-area {
    margin-top: 40px;
}
.map-area iframe {
    width: 100% !important;
    height: 450px !important;
    margin-bottom: 0 !important;
    border-radius: 20px !important; /* Veći radius */
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.2);
}


/* === GALERIJA SLIKA I VIDEA (.gallery-photo, .video-item) === */
.gallery-photo,
.video-item {
    position: relative !important;
    margin-bottom: 30px !important;
    border-radius: 20px !important; /* Veći radius */
    overflow: hidden !important;
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    background: #e1e3ef; /* Boja dok se slika učitava */
}

.gallery-photo:hover,
.video-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 40px rgba(100, 108, 143, 0.3) !important;
}

.gallery-photo img,
.video-item iframe {
    width: 100% !important;
    height: 300px !important; /* Fiksna visina za uniformnost */
    object-fit: cover;
    display: block;
    border-radius: 20px !important;
    border: none !important;
}

/* Overlay i ikonica za galeriju slika */
.gallery-photo .gallery-photo-bg {
    position: absolute !important;
    inset: 0 !important; /* Novi, kraći način za top,left,right,bottom: 0 */
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    background: linear-gradient(180deg, rgba(106, 17, 203, 0.2) 0%, rgba(37, 117, 252, 0.7) 100%) !important;
    z-index: 1 !important;
    transition: opacity 0.4s ease !important;
    border-radius: 20px !important;
}

.gallery-photo:hover .gallery-photo-bg {
    opacity: 1 !important;
}

.gallery-photo .plus-icon {
    visibility: hidden !important;
    opacity: 0;
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    font-size: 3rem !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: opacity 0.4s ease, transform 0.4s ease !important;
    transform: scale(0.8);
}

.gallery-photo:hover .plus-icon {
    visibility: visible !important;
    opacity: 1;
    transform: scale(1);
}
/* ========================================= */
/*      PROIZVODI & KORPA - BRUTALNI REDIZAJN       */
/* ========================================= */

/* === KARTICA PROIZVODA (.product-item) === */
.product-item {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.15) !important;
    
    padding: 15px !important;
    margin-bottom: 40px !important;
    color: #3e4c74 !important;
    
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(100, 108, 143, 0.25) !important;
}

/* Slika proizvoda */
.product-item .photo {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}
.product-item .photo img {
    width: 100% !important;
    height: 250px !important; /* Fiksna visina za uniformnost */
    object-fit: cover;
    border-radius: 14px !important;
    transition: transform 0.4s ease !important;
}
.product-item:hover .photo img {
    transform: scale(1.1);
}

/* Tekstualni deo kartice */
.product-item .text {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Gura dugme na dno */
}

.product-item .text h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
}

.product-item .text h3 a {
    color: #1a2551 !important;
    transition: color 0.3s ease !important;
}

.product-item .text h3 a:hover {
    color: #2575fc !important;
}

/* Cena proizvoda */
.product-item .text .price {
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    color: #1a2551 !important;
}

.product-item .text .price del {
    color: #9aabbb !important;
    font-weight: 500;
    font-size: 16px;
    margin-left: 8px;
}

/* Dugme za dodavanje u korpu */
.product-item .text .cart-button {
    margin-top: auto; /* Ključno da bude na dnu */
}
.product-item .text .cart-button a {
    border: 0 !important;
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    box-shadow: 0 4px 20px rgba(37, 117, 252, 0.4) !important;
    border-radius: 14px !important;
    padding: 12px 25px !important;
    font-weight: 700 !important;
    font-size: 15px;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}

.product-item .text .cart-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.6) !important;
}


/* === STRANICA DETALJA PROIZVODA (.product-detail) === */
.product-detail .photo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.2);
}
.product-detail .photo img {
    width: 100% !important;
    border-radius: 20px !important;
}

.product-detail h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #1a2551 !important;
}

.product-detail p {
    font-size: 16px !important;
    color: #3e4c74 !important;
    line-height: 1.8;
}

.product-detail .price {
    font-size: 42px !important;
    font-weight: 800 !important;
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.product-detail .price del {
    font-size: 24px;
    color: #9aabbb !important;
    -webkit-text-fill-color: initial;
}

.product-detail .qty input[type="number"] {
    width: 80px !important;
    height: 50px;
    border-radius: 14px !important;
    padding: 5px 15px !important;
    border: 1px solid rgba(100, 108, 143, 0.3) !important;
    text-align: center;
    font-weight: 700;
}

/* Dugme na stranici detalja */
.product-detail button {
    cursor: pointer !important;
    display: inline-block !important;
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    padding: 15px 40px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(37, 117, 252, 0.4) !important;
    transition: all 0.3s ease !important;
}

.product-detail button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.6) !important;
}

/* Tabovi */
.product-detail .nav-pills .nav-link {
    background: rgba(37, 117, 252, 0.1) !important;
    color: #2575fc !important;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease !important;
}
.product-detail .nav-pills .nav-link.active {
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
}


/* === KORPA (.cart) === */
.cart table {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.1);
}
.cart table img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 12px !important;
}
.cart input[type="number"] {
    width: 80px !important;
    height: 45px;
    border-radius: 10px !important;
    border: 1px solid rgba(100, 108, 143, 0.3) !important;
    text-align: center;
}

/* Dugmad u korpi */
.cart-buttons a {
    margin-right: 10px !important;
    padding: 12px 25px !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}
.cart-buttons a:first-child { /* Dugme "Nastavi kupovinu" */
    background: rgba(37, 117, 252, 0.1) !important;
    color: #2575fc !important;
}
.cart-buttons a:first-child:hover {
    background: #2575fc !important;
    color: #ffffff !important;
    box-shadow: 0 5px 20px rgba(37, 117, 252, 0.4) !important;
}
.cart-buttons a:last-child { /* Dugme "Idi na naplatu" */
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(37, 117, 252, 0.4) !important;
}
.cart-buttons a:last-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.6) !important;
}


/* === NAPLATA I PRIJAVA (.checkout, .reg-login-form) === */
.checkout-login-form, .reg-login-form, .checkout, .checkout-billing {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 20px !important;
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.15) !important;
}

.checkout-login-form h2, .checkout h2, .checkout-billing h2, .reg-login-form h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a2551 !important;
    margin-bottom: 25px !important;
}

/* Input polja */
.checkout-login-form input, .reg-login-form input, .checkout .form-control {
    width: 100% !important;
    max-width: none !important;
    padding: 10px 15px !important;
    height: 50px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(100, 108, 143, 0.3) !important;
    background-color: rgba(255,255,255,0.6) !important;
    color: #1a2551 !important;
    transition: all 0.3s ease;
}
.checkout-login-form input:focus, .reg-login-form input:focus, .checkout .form-control:focus {
    background: #fff !important;
    border-color: #2575fc !important;
    box-shadow: 0 0 15px rgba(37, 117, 252, 0.2) !important;
}

/* Dugme za prijavu */
.reg-login-form button {
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    border: 0 !important;
    color: #ffffff !important;
    padding: 14px 30px !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(37, 117, 252, 0.4) !important;
}
.reg-login-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.6) !important;
}

/* Linkovi za registraciju/zaboravljenu lozinku */
.checkout-login-form .new-user a, .reg-login-form .new-user a, .reg-login-form .link {
    color: #2575fc !important;
    font-weight: 600;
}
.checkout-login-form .new-user a:hover, .reg-login-form .new-user a:hover, .reg-login-form .link:hover {
    color: #6a11cb !important;
}

/* === KORISNIČKI PANEL (.user-sidebar) === */
.user-sidebar {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.15) !important;
    padding: 20px !important;
}

.user-sidebar ul li a {
    background: rgba(37, 117, 252, 0.08) !important;
    color: #3e4c74 !important;
    padding: 12px 15px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.user-sidebar ul li a:hover, .user-sidebar ul li a.active { /* Dodajemo .active */
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
    transform: translateX(5px) !important;
}

/* Modal i Chosen-drop ostaju uglavnom isti, ali z-index je važan */
.modal-table { font-size: 16px; }
.modal-table tr th { width: 150px; }
.chosen-drop { z-index: 999999 !important; }
/* Listing Brand */

.listing-brand-item {
    margin-bottom: 25px;
    border-radius: 6px; /* Zaokruženi uglovi za moderan izgled */
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Blaga senka za dubinu */
}

.listing-brand-item .heading {
    background: #8e44ad; /* Ljubičasta pozadina za isticanje */
    color: #ffffff;
    padding: 12px;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-brand-item .heading .name a {
    color: #ffffff;
    text-decoration: none;
}

.listing-brand-item .heading .total {
    font-size: 0.9em;
    font-weight: 600;
}

.listing-brand-item .text {
    background: #f0f0f0; /* Svetlosiva pozadina za preglednost */
    color: #34495e; /* Tamnoplava za tekst */
    padding: 10px;
    border-bottom: 1px solid #c0c0c0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-brand-item .text:last-child {
    border-bottom: 0;
    border-radius: 0 0 6px 6px;
}

.listing-brand-item .text .name a {
    color: #34495e; /* Tamnoplava boja za linkove */
    text-decoration: none;
    transition: color 0.3s ease;
}

.listing-brand-item .text .name a:hover {
    color: #8e44ad; /* Ljubičasta na hover */
}

.listing-brand-item .text .total {
    font-size: 0.9em;
    font-weight: 600;
}

/* Listing Single Page */
.listing-single-banner {
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    position: relative !important;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    text-align: center !important;
}

.listing-single-banner .bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0.5 !important;
    background: #2c3e50 !important; /* Tamnoplava pozadina */
}

.listing-single-banner h1 {
    color: #ffffff !important;
    font-size: 50px !important;
    font-weight: 700 !important;
}

.listing-single-banner .price,
.listing-single-banner .location,
.listing-single-banner .call {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-top: 15px !important;
}

.listing-single-banner .review {
    color: #fbc715 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-top: 5px !important;
}

.listing-single-banner .listing-items a {
    background: #ffffff !important;
    color: #e00445 !important;
    padding: 6px 15px !important;
    border: 1px solid #ffffff !important;
    border-radius: 4px !important;
    transition: background 0.3s ease, color 0.3s ease !important;
}

.listing-single-banner .listing-items a:hover {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
}

.listing-single-banner .social a {
    color: #ffffff !important;
    margin-right: 5px !important;
    width: 30px !important;
    height: 30px !important;
    text-align: center !important;
    line-height: 30px !important;
    border-radius: 4px !important;
    background: transparent !important;
    border: 1px solid #ffffff !important;
    transition: background 0.3s ease, color 0.3s ease !important;
}

.listing-single-banner .social a:hover {
    background: #e00445 !important;
    color: #ffffff !important;
}

/* Listing Page */
.listing-page h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    margin-bottom: 15px !important;
}

.listing-page .sep,
.listing-page .gap {
    border-top: 1px solid #c7c7c7 !important;
    margin: 40px 0 !important;
}

.listing-page .room-all .item {
    border: 1px solid #d2d2d2 !important;
    margin-bottom: 30px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}

.listing-page .room-all .item img {
    width: 100% !important;
    height: 120px !important;
    object-fit: cover !important;
}

.listing-page .room-all .item .text {
    padding: 10px !important;
}

.listing-page .room-all .item h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #333 !important;
}

.listing-page .room-all .item .price {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #e00445 !important;
}

.listing-page .photo-all .item,
.listing-page .video-all .item {
    position: relative !important;
    margin-bottom: 25px !important;
}

.listing-page .photo-all img,
.listing-page .video-all img {
    width: 100% !important;
    height: 140px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
}

.listing-page .photo-all .item .icon,
.listing-page .video-all .item .icon {
    font-size: 20px !important;
    color: #ffffff !important;
    position: absolute !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 99 !important;
}

.listing-page .photo-all .item .bg,
.listing-page .video-all .item .bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(44, 62, 80, 0.3) !important;
    border-radius: 6px !important;
}

.listing-page table tr th,
.listing-page table tr td {
    border-color: #c4c4c4 !important;
}

/* Listing Sidebar */
.listing-sidebar .ls-widget {
    background: #f3f3f3 !important;
    padding: 20px !important;
    border-radius: 6px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.listing-sidebar .ls-widget h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #c7c7c7 !important;
    margin-bottom: 15px !important;
}

.listing-sidebar .ls-widget .agent .photo img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    border: 2px solid #ddd !important;
}

.listing-sidebar .ls-widget .agent-contact li,
.listing-sidebar .ls-widget .category ul li {
    list-style-type: none !important;
    margin-bottom: 10px !important;
    color: #e00445 !important;
}

.listing-sidebar .ls-widget a.agent-view-profile {
    background: #e00445 !important;
    border: 0 !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    text-align: center !important;
    display: block !important;
    margin-top: 20px !important;
    transition: background 0.3s ease !important;
}

.listing-sidebar .ls-widget a.agent-view-profile:hover {
    background: #333 !important;
}

.listing-sidebar .ls-widget .agent-social ul li a {
    color: #ffffff !important;
    background: #e00445 !important;
    width: 30px !important;
    height: 30px !important;
    display: block !important;
    border-radius: 4px !important;
    text-align: center !important;
    line-height: 30px !important;
    transition: background 0.3s ease, color 0.3s ease !important;
}

.listing-sidebar .ls-widget .agent-social ul li a:hover {
    background: #333 !important;
    color: #ffffff !important;
}

/* ========================================= */
/*   AGENT & FILTER - "JOŠ BOLJI" REDIZAJN   */
/* ========================================= */

/* === AGENT BANER (.agent-banner) === */
.agent-banner {
    padding: 80px 0 !important;
    position: relative !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh; /* Dajemo mu visinu da dominira */
}

/* Dinamični gradijent overlay */
.agent-banner .bg,
.agent-banner::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important; height: 100% !important;
    opacity: 1 !important;
    background: linear-gradient(200deg, rgba(106, 17, 203, 0.7) 0%, rgba(37, 117, 252, 0.5) 100%) !important;
    z-index: 1 !important;
}

/* === GLAVNA STAKLENA KARTICA AGENTA === */
/* Ovaj novi element treba dodati u HTML da obavije informacije o agentu */
.agent-info-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3) !important;
    padding: 40px;
    max-width: 800px; /* Ograničavamo širinu kartice */
    margin: 0 auto;
    color: #ffffff !important;
    text-align: center;
}

/* Slika agenta */
.agent-banner .agent .photo img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    border: 4px solid rgba(255, 255, 255, 0.8) !important;
    margin: 0 auto 20px auto !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

/* Tekst - Ime i pozicija */
.agent-banner .agent .text h3 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 5px 0 !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.agent-banner .agent .text h4 {
    font-size: 16px !important;
    font-weight: 500;
    color: #e0e0e0 !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: .1rem;
}

/* Kontakt informacije */
.agent-banner .contact {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 16px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    float: none !important;
    text-align: center !important;
}
.agent-banner .contact .item {
    display: inline-block;
    margin: 0 15px;
}
.agent-banner .contact .item i {
    margin-right: 8px;
    color: #a7d1ff;
}

/* Društvene mreže */
.agent-banner .social {
    margin-top: 30px !important;
}
.agent-banner .social a {
    color: #ffffff !important;
    width: 45px !important; height: 45px !important;
    line-height: 45px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}
.agent-banner .social a:hover {
    background: #ffffff !important;
    color: #2575fc !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* === FILTER LISTINGA (.listing-filter) === */
.listing-filter {
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px 0 rgba(100, 108, 143, 0.15) !important;
    padding: 30px !important;
}

.listing-filter .lf-heading {
    color: #1a2551 !important;
    padding-bottom: 15px !important;
    margin-bottom: 25px !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    border-bottom: 2px solid;
    border-image-source: linear-gradient(90deg, #6a11cb, #2575fc) !important;
    border-image-slice: 1 !important;
}

/* Widget unutar filtera, sada je samo grupacija */
.listing-filter .lf-widget {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    margin-bottom: 25px !important;
    box-shadow: none !important;
    color: #3e4c74 !important;
}
.listing-filter .lf-widget h2 {
    font-weight: 600 !important;
    font-size: 18px !important;
    color: #1a2551 !important;
    border-bottom: none !important;
    margin-bottom: 15px !important;
    padding-bottom: 0 !important;
}

/* Checkbox stil */
.listing-filter .lf-widget .form-check {
    margin-bottom: 12px !important;
    color: #3e4c74 !important;
    font-weight: 500;
}
.listing-filter .lf-widget .form-check-input {
    border-color: rgba(100, 108, 143, 0.5);
}
.listing-filter .lf-widget .form-check-input:checked {
    background-color: #2575fc;
    border-color: #2575fc;
}

/* Dugme za filtriranje */
.filter-button {
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    color: #fff !important;
    border: 0 !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    padding: 14px 20px !important;
    border-radius: 14px !important;
    transition: all 0.3s ease !important;
    width: 100%;
    box-shadow: 0 4px 20px rgba(37, 117, 252, 0.4) !important;
}
.filter-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.6) !important;
}


/* === STRANICA RAČUNA (.invoice-area) === */
.invoice-area {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(100, 108, 143, 0.2);
}
.invoice-area img { height: 70px; }
.invoice-head span { font-weight: 700; color: #1a2551; }
.invoice-address h3 { color: #1a2551; }
.invoice-table .table { color: #3e4c74; }
.invoice-table .table thead th { color: #1a2551; border-bottom-width: 2px !important; }

/* Dugmad na stranici računa */
.invoice-buttons a {
    background: linear-gradient(45deg, #6a11cb, #2575fc) !important;
    color: #fff !important;
    padding: 12px 25px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3) !important;
    transition: all 0.3s ease !important;
}
.invoice-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 117, 252, 0.5) !important;
}
/* ========================================= */
/*      AD-SECTION - STAKLENI REDIZAJN       */
/* ========================================= */

/* Glavni kontejner za reklamu */
.ad-section {
    margin-top: 50px !important;
    padding: 20px !important; /* Dodajemo padding da stakleni efekat ima prostora */
}

/* 
  Unutrašnji omotač postaje "stakleni" panel.
  Pretpostavka je da HTML izgleda ovako: 
  <div class="ad-section"><div class="inner"><img ...></div></div>
*/
.ad-section .inner {
    /* === PRIMENA ZAPAMĆENOG STAKLENOG STILA === */

    /* 1. Pozadina, prozirnost i zamućenje */
    background: rgba(10, 25, 47, 0.7) !important; /* Malo tamnija i manje prozirna za bolji kontrast reklame */
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;

    /* 2. Okvir, radijus i senka */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
    
    padding: 15px !important; /* Padding unutar staklenog panela */
    overflow: hidden !important;
}

/* Slika unutar staklenog panela */
.ad-section .inner img {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important; /* Zaokružujemo i sliku da se lepo uklopi */
    display: block !important; /* Uklanja eventualni razmak ispod slike */
}


/* ========================================= */
/*   DUGMAD ZA PLAĆANJE - STAKLENI REDIZAJN  */
/* ========================================= */

.stripe-button-el,
.stripe-button-el span,
.razorpay-payment-button,
.flutterwave-button,
.mollie-button {
    /* 1. Pozadina i prozirnost */
    background: rgba(42, 153, 227, 0.25) !important; /* Koristimo plavu boju iz zapamćenog dugmeta, ali sa providnošću */
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;

    /* 2. Okvir, radijus i senka */
    border: 1px solid rgba(42, 153, 227, 0.5) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;

    /* 3. Tipografija i dimenzije */
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: normal !important;
    padding: 12px 20px !important;
    height: 50px !important;
    color: #fff !important;
    
    width: 100% !important;
    text-align: center !important;
    text-shadow: none !important;
    transition: all 0.3s ease-in-out !important;
}

/* Moramo resetovati span unutar stripe dugmeta */
.stripe-button-el span {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    line-height: normal !important;
    height: auto !important;
    display: block !important;
}

/* Hover efekat za sva dugmad */
.stripe-button-el:hover,
.razorpay-payment-button:hover,
.flutterwave-button:hover,
.mollie-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(42, 153, 227, 0.4) !important; /* Jači sjaj */
    background: rgba(42, 153, 227, 0.4) !important; /* Malo jača boja na hover */
    border-color: rgba(135, 206, 250, 0.7) !important;
}

.testimonial {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
    background: #33B836;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.testimonial-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0d263b;
    opacity: 0.75;
}

.testimonial .heading {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial .heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
}

.testimonial .heading h3 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.testimonial .testimonial-item .photo {
    text-align: center;
}

.testimonial .testimonial-item .photo img {
    width: 80px;
    height: 80px;
    display: inline-block;
}

.testimonial .testimonial-item .text {
    padding: 20px 150px;
    text-align: center;
}

.testimonial .testimonial-item .text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    position: relative;
    margin-top: 40px;
}

.testimonial .testimonial-item .text h3:before {
    content: '';
    position: absolute;
    left: calc(50% - 20px);
    top: -20px;
    width: 40px;
    height: 2px;
    background: #fff;
}

.testimonial .testimonial-item .text h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.testimonial .testimonial-item .text p {
    font-size: 15px;
    color: #fff;
}

.testimonial .owl-dots {
    text-align: center;
    margin-top: 5px;
}

.testimonial .owl-dots .owl-dot {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 7px solid #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

.testimonial .owl-dots .owl-dot.active {
    width: 24px;
    height: 24px;
    background: #333;
    border: 7px solid #fff;
}

@media only screen and (max-width: 992px) {
    .testimonial .testimonial-item .text {
        padding-left: 10px;
        padding-right: 10px;
    }
}



.image-effect {
	position: relative;
	display: block;
	vertical-align: top;
	max-width: 100%;
}

.image-effect:before,
.image-effect:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, .3);
	z-index: 6;
	-webkit-transition: transform .5s, opacity .2s ease-in-out 0s;
	-o-transition: transform .5s, opacity .2s ease-in-out 0s;
	transition: transform .5s, opacity .2s ease-in-out 0s;
	opacity: 0;
	filter: alpha(opacity=0);
}

.effect-item:hover .image-effect:before {
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	transform: scale(0, 1);
	opacity: 1;
	filter: alpha(opacity=100);
}

.effect-item:hover .image-effect:after {
	-webkit-transform: scale(1, 0);
	-ms-transform: scale(1, 0);
	-o-transform: scale(1, 0);
	transform: scale(1, 0);
	opacity: 1;
	filter: alpha(opacity=100);
}


/* Home Video */
.home-video {
    margin-top: 40px;
	padding-top: 120px;
	padding-bottom: 100px;
	background: #4ab04d;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	position: relative;
}

.home-video .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #0d263b;
	opacity: 0.7;
}

.home-video h2 {
	color: #fff;
	text-align: center;
	margin-top: 0;
	font-weight: 700;
	font-size: 40px;
	margin-bottom: 20px;
}

.home-video p {
	color: #fff;
	text-align: center;
	padding-left: 100px;
	padding-right: 100px;
}

.home-video .video-section {
	text-align: center;
}

.home-video .video-section a {
	font-size: 100px;
	color: #fff;
}
a.parts.nav-link {
    color: #000;
    font-weight: 500;
}
li.nav-item.parts-equipment {
    background: #f7b43b !important;
}



@media only screen and (max-width: 767px) {

.navbar-area {
    position: sticky;
    left: 12%;
    top: 14%;
    opacity: 1;
    z-index: 999;
}
}