/* ======================================================
   AUTOSERVISI TOPBAR
====================================================== */
/* DEFAULT: sakriveno (animira se) */
.as-collapse{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .45s ease, opacity .35s ease, transform .35s ease;
}

/* OTVORENO */
.as-collapse.is-open{
  max-height: 3000px;  /* dovoljno veliko */
  opacity: 1;
  transform: none;
}
.as-topbar{
  position:sticky;
  top:0;
  z-index:11000;
  background:rgba(11,18,32,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.as-topbar-inner{
  max-width:1200px;
  margin:0 auto;
  padding:10px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.as-brand{
  display:flex;
  align-items:baseline;
  gap:10px;
  text-decoration:none;
  color:#fff;
  font-weight:900;
}

.as-brand-main{ font-size:20px; }
.as-brand-sub{
  font-size:13px;
  opacity:.85;
  font-weight:800;
}

.as-nav{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}

.as-nav a{
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
  transition:.2s ease;
}

.as-nav a:hover{
  color:#fff;
  background:rgba(255,255,255,.08);
}

.as-nav a.is-active{
  color:#fff;
  background:rgba(59,130,246,.22);
  border:1px solid rgba(59,130,246,.35);
}

.as-cta{
  text-decoration:none;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg,var(--as-blue),var(--as-blue2));
  padding:9px 14px;
  border-radius:999px;
  box-shadow:0 14px 40px rgba(37,99,235,.35);
  white-space:nowrap;
}

/* ======================================================
   GLOBAL AUTOSERVISI STIL
====================================================== */

body{
  background:#0b1220 !important;
}

/* NASLOVI */
h1, h2, h3, h4, h5, h6 {
  color: #7cff04;
}

/* ROOT VAR */
:root{
  --as-bg:#0b1220;
  --as-panel:rgba(255,255,255,.06);
  --as-card:rgba(255,255,255,.08);
  --as-line:rgba(255,255,255,.12);
  --as-text:rgba(255,255,255,.94);
  --as-muted:rgba(255,255,255,.75);
  --as-blue:#3b82f6;
  --as-blue2:#2563eb;
  --as-shadow:0 20px 60px rgba(0,0,0,.35);
  --as-radius:18px;
  --glass-edge:rgba(255,255,255,0.08);
  --flipEase: cubic-bezier(.18,.9,.18,1);
}

/* ======================================================
   INDEX STRANICA
====================================================== */

.as-page{
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(900px 400px at 90% 20%, rgba(37,99,235,.14), transparent 55%),
    var(--as-bg);
  color:var(--as-text);
  min-height:100vh;
  padding:30px 0 110px;
  position:relative;
  overflow-x:hidden;
}

.as-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
  position:relative;
  z-index:2;
}

.as-center{
  min-height:58vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.as-site-title{
  font-size:3.5rem;
  font-weight:900;
  margin-bottom:2rem;
  background: linear-gradient(130deg, #ffffff, #b3d0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BIG BUTTON */

.as-big-btn{
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:22px 40px;
  font-size:22px;
  font-weight:900;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,var(--as-blue),var(--as-blue2));
  box-shadow:0 25px 90px rgba(37,99,235,.40);
  transition:.25s ease;
}

.as-big-btn:hover{
  transform:translateY(-2px);
}

/* LISTA */

.as-section{
  margin-top:20px;
  background:var(--as-panel);
  border:1px solid var(--as-line);
  border-radius:var(--as-radius);
  box-shadow:var(--as-shadow);
  padding:22px;
}

.as-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.as-item{
  background:var(--as-card);
  border:1px solid var(--as-line);
  border-radius:20px;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-decoration:none;
  color:#fff;
  transition:.3s ease;
}

.as-item:hover{
  transform:translateY(-5px);
  background:rgba(255,255,255,.14);
}

.as-left{
  display:flex;
  align-items:center;
  gap:14px;
}

.as-iconbox{
  width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(59,130,246,.2);
  border:1px solid rgba(59,130,246,.3);
  font-size:20px;
}

.as-title{
  font-weight:900;
  font-size:1.1rem;
}

.as-sub{
  font-size:13px;
  color:var(--as-muted);
}

/* ======================================================
   CATEGORY STRANICA
====================================================== */

.as-category-page{
  min-height:100vh;
  padding:60px 0 120px;
  background:#0b1220;
  color:#fff;
}

.as-heading{
  font-size:38px;
  font-weight:900;
  margin-bottom:30px;
}

/* FILTER */

.as-filter{
  display:flex;
  gap:12px;
  margin-bottom:40px;
  flex-wrap:wrap;
}

.as-input{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  outline:none;
  min-width:200px;
}

.as-btn{
  background:#1d4ed8;
  color:#fff;
  border:none;
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}

.as-btn:hover{
  background:#2563eb;
}

/* GRID */

.as-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:22px;
}

.as-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  transition:.3s ease;
  text-decoration:none;
  color:#fff;
}

.as-card:hover{
  transform:translateY(-6px);
  background:rgba(255,255,255,.14);
}

.as-card-body{
  padding:18px;
}

.as-card h3{
  font-size:18px;
  margin:0 0 6px;
}

.as-card p{
  font-size:14px;
  opacity:.75;
  margin:0;
}

/* ======================================================
   GALAXY & VIDEO EFEKTI (INDEX ONLY)
====================================================== */

.as-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  opacity:.55;
  filter:saturate(1.1) contrast(1.05) brightness(.9);
  pointer-events:none;
}

.as-bg-video-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(59,130,246,.22), transparent 60%),
    radial-gradient(900px 400px at 90% 20%, rgba(37,99,235,.18), transparent 55%),
    rgba(11,18,32,.62);
  pointer-events:none;
}

/* GALAXY DUST */

.galaxy-dust{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:9999;
  opacity:0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,215,140,.5) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(90,200,255,.5) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(255,120,100,.4) 0%, transparent 45%);
  filter:blur(6px) brightness(1.6);
  mix-blend-mode:hard-light;
  animation:galaxySpin 1.5s cubic-bezier(.18,.9,.18,1) forwards;
}

@keyframes galaxySpin{
  0%{opacity:0; transform:translateX(-100px) scale(1) rotate(0deg);}
  20%{opacity:.9; transform:translateX(-20px) scale(1.8) rotate(15deg);}
  60%{opacity:.8; transform:translateX(80px) scale(2.2) rotate(30deg);}
  100%{opacity:0; transform:translateX(240px) scale(1) rotate(70deg);}
}

/* STAR TRAIL */

.stardust{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:10000;
}

.stardust span{
  position:absolute;
  width:12px;
  height:12px;
  border-radius:50%;
  background:white;
  box-shadow:0 0 30px gold, 0 0 60px #ffa500;
  opacity:0;
  filter:blur(2px);
}

.stardust.play span{
  animation:starTrail 1.5s cubic-bezier(.18,.9,.18,1) forwards;
}

@keyframes starTrail{
  0%{opacity:0; transform:translateX(-50px) scale(.5);}
  30%{opacity:1; transform:translateX(40px) scale(1.5);}
  80%{opacity:.7; transform:translateX(160px) scale(2);}
  100%{opacity:0; transform:translateX(280px) scale(.5);}
}

/* MOUSE RADIAL GLOW */

.as-item::after{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(
    600px circle at var(--mouse-x,50%) var(--mouse-y,50%),
    rgba(255,255,255,0.2),
    transparent 40%
  );
  opacity:0;
  transition:opacity .25s;
  pointer-events:none;
  border-radius:inherit;
  mix-blend-mode:overlay;
}

.as-item:hover::after{
  opacity:1;
}

/* ======================================================
   HARD OVERRIDE (samo autoservisi) — pobija temu
====================================================== */

body{
  background:#0b1220 !important;
}

/* ako tema stavlja belu pozadinu na neki wrapper */
body *[class*="container"],
body .container,
body .content,
body .content-area,
body .page-content,
body main{
  background: transparent;
}

/* full-bleed preko parent container-a (glavni fix za “u okviru”) */
.as-page,
.as-category-page{
  width:100vw !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  background:#0b1220 !important;
  position:relative !important;
  overflow:hidden !important;
}

/* resetuj theme padding/margine oko content-a */
.as-page{
  padding:30px 0 110px !important;
}

/* da ti tekst ne bude crn od bootstrap-a */
.as-page,
.as-page *{
  color: var(--as-text) !important;
}

/* ali linkove ostavi normalne (da ne budu svi beli ako želiš) */
.as-page a{
  color: inherit !important;
  text-decoration:none !important;
}

/* H naslovi neon */
.as-page h1, .as-page h2, .as-page h3, .as-page h4, .as-page h5, .as-page h6,
.as-category-page h1, .as-category-page h2, .as-category-page h3, .as-category-page h4, .as-category-page h5, .as-category-page h6{
  color:#7cff04 !important;
}

/* ======================================================
   POBOLJŠAN RESPONSIVE MENI (bez hamburgera)
   - Kompaktniji na mobilnim
   - Zadržava sve linkove vidljivim
====================================================== */

/* Srednji ekrani - smanji razmake */
@media screen and (max-width: 700px) {
  .as-topbar-inner {
    gap: 8px;
    padding: 8px 12px;
  }
  
  .as-brand-main {
    font-size: 18px;
  }
  
  .as-brand-sub {
    font-size: 11px;
  }
  
  .as-nav {
    gap: 6px;
  }
  
  .as-nav a {
    font-size: 12px;
    padding: 5px 8px;
  }
  
  .as-cta {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* Mali telefoni - maksimalno kompaktno */
@media screen and (max-width: 520px) {
  .as-topbar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  
  .as-brand {
    justify-content: center;
    margin-bottom: 2px;
  }
  
  .as-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
  }
  
  .as-nav a {
    font-size: 11px;
    padding: 4px 8px;
    white-space: nowrap;
  }
  
  .as-cta {
    width: 100%;
    text-align: center;
    margin-top: 2px;
    font-size: 13px;
    padding: 8px 12px;
  }
}

/* Veoma mali telefoni (ispod 360px) */
@media screen and (max-width: 360px) {
  .as-nav a {
    font-size: 10px;
    padding: 3px 6px;
  }
  
  .as-brand-main {
    font-size: 16px;
  }
  
  .as-brand-sub {
    font-size: 10px;
  }
}

/* ======================================================
   POBOLJŠANJA ZA SADRŽAJ NA MOBILNOM
====================================================== */

@media screen and (max-width: 600px) {
  /* Poboljšanje za grid na kategorijama */
  .as-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  /* Poboljšanje za iteme na početnoj */
  .as-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }
  
  .as-left {
    width: 100%;
  }
  
  /* Filter sekcija */
  .as-filter {
    flex-direction: column;
    gap: 8px;
  }
  
  .as-input {
    width: 100%;
    min-width: auto;
  }
  
  .as-btn {
    width: 100%;
  }
  
  /* Container padding */
  .as-container {
    padding: 0 12px;
  }
  
  /* Naslovi */
  .as-site-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .as-heading {
    font-size: 24px;
  }
  
  /* Big button */
  .as-big-btn {
    font-size: 18px;
    padding: 16px 24px;
    width: 100%;
    justify-content: center;
  }
}

/* Horizontalni telefoni (orientation landscape) */
@media screen and (max-width: 900px) and (orientation: landscape) {
  .as-topbar-inner {
    padding: 5px 12px;
  }
  
  .as-nav {
    gap: 8px;
  }
  
  .as-nav a {
    padding: 4px 8px;
    font-size: 12px;
  }
}  

/* ======================================================
   SHOW PAGE - Pojedinačni servis
====================================================== */

.as-show {
  padding: 20px 0 60px;
}

/* Breadcrumb poboljšan */
.as-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
  font-size: 14px;
  background: rgba(255,255,255,.05);
  padding: 10px 16px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.as-breadcrumb a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.as-breadcrumb i {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.as-breadcrumb .current {
  color: #7cff04;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

/* Hero sekcija - RESPONSIVE GRID */
.as-hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 25px;
  margin-bottom: 30px;
}

.as-cover {
  background: linear-gradient(145deg, rgba(59,130,246,.1), rgba(0,0,0,.3));
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.as-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.as-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.as-badge.verified {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.as-badge.rating {
  background: rgba(234, 179, 8, 0.15);
  color: #fbbf24;
}

.as-badge .reviews {
  color: rgba(255,255,255,.6);
  font-weight: 400;
}

.as-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 0 15px 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff, #b3d0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.as-address {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 16px;
}

.as-hours-mobile {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hours-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
}

/* Sidebar */
.as-side {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 25px;
  backdrop-filter: blur(10px);
  align-self: start;
}

.as-side h3 {
  color: #fff;
  margin: 0 0 20px 0;
  font-size: 18px;
}

.as-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 25px;
}

.as-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.as-row i {
  width: 20px;
  color: #3b82f6;
  font-size: 18px;
  margin-top: 2px;
}

.row-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.row-content .label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.row-content .value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  word-break: break-word;
}

.row-content a.value {
  color: #3b82f6;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}

/* CTA dugmad */
.as-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.as-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: .2s;
  border: none;
  cursor: pointer;
}

.as-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 10px 25px rgba(37,99,235,.4);
}

.as-btn-secondary {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.15);
}

.as-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.15);
}

.as-btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 16px;
  font-size: 13px;
}

.as-btn:hover {
  transform: translateY(-2px);
}

/* Sekcije */
.as-section {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 30px;
  margin-bottom: 25px;
  backdrop-filter: blur(8px);
}

.as-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7cff04;
  font-size: 24px;
  margin: 0 0 20px 0;
}

.as-section h2 i {
  color: #3b82f6;
  font-size: 24px;
}

.as-text {
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  font-size: 16px;
}

/* Tagovi (usluge) */
.as-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.as-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.3);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: .2s;
}

.as-tag i {
  color: #3b82f6;
}

.as-tag:hover {
  background: rgba(59,130,246,.25);
  transform: translateY(-2px);
}

/* Mapa */
.as-map-container {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}

.as-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.as-address-full {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  color: rgba(255,255,255,.9);
}

/* Radno vreme grid */
.as-hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.hours-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.05);
}

.hours-day .day {
  font-weight: 600;
  color: #fff;
}

.hours-day .time {
  color: #3b82f6;
  font-weight: 600;
}

.hours-day.closed .time {
  color: #ef4444;
}

/* RESPONSIVE ZA SHOW PAGE */
@media screen and (max-width: 900px) {
  .as-hero {
    grid-template-columns: 1fr;
  }
  
  .as-side {
    order: -1;
  }
  
  .as-hours-mobile {
    display: block;
  }
  
  .as-title {
    font-size: 2rem;
  }
  
  .as-breadcrumb .current {
    max-width: 150px;
  }
}

@media screen and (max-width: 600px) {
  .as-show {
    padding: 10px 0 40px;
  }
  
  .as-container {
    padding: 0 12px;
  }
  
  .as-cover {
    padding: 20px;
  }
  
  .as-breadcrumb {
    font-size: 12px;
    padding: 8px 12px;
  }
  
  .as-breadcrumb span:not(.current) {
    display: none;
  }
  
  .as-breadcrumb .current {
    max-width: 180px;
  }
  
  .as-title {
    font-size: 1.6rem;
  }
  
  .as-badges {
    gap: 6px;
  }
  
  .as-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
  
  .as-side {
    padding: 18px;
  }
  
  .as-row .value {
    font-size: 14px;
  }
  
  .row-content a.value {
    font-size: 16px;
  }
  
  .as-section {
    padding: 20px;
  }
  
  .as-section h2 {
    font-size: 20px;
  }
  
  .as-tag {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .as-hours-grid {
    grid-template-columns: 1fr;
  }
  
  .as-map-actions {
    flex-direction: column;
  }
  
  .as-map-actions .as-btn {
    width: 100%;
  }
}

@media screen and (max-width: 380px) {
  .as-breadcrumb .current {
    max-width: 120px;
  }
  
  .as-title {
    font-size: 1.3rem;
  }
  
  .as-badge .reviews {
    display: none;
  }
}

/* Landscape telefon */
@media screen and (max-width: 900px) and (orientation: landscape) {
  .as-hero {
    grid-template-columns: 1fr 1fr;
  }
  
  .as-side {
    order: 0;
  }
  
  .as-hours-mobile {
    display: none;
  }
}

@media (min-width: 1024px) {
  body {
      padding-top: 0px !important;
  }
}

/* ======================================================
   HAMBURGER MENI I MOBILNA NAVIGACIJA
   (Objedinjeno i optimizovano)
====================================================== */

/* Osnovni stilovi navigacije */
.as-nav-wrap {
  position: sticky; 
  top: 0; 
  z-index: 9999;
  background: rgba(10,14,25,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.as-nav {
  max-width: 1200px; 
  margin: 0 auto;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 10px 16px;
  gap: 12px;
}

.as-brand { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  color: #fff; 
  font-weight: 900; 
  text-decoration: none; 
}

.as-brand img { 
  height: 34px; 
  width: auto; 
}

/* Linkovi - desktop */
.as-links { 
  display: flex; 
  gap: 12px; 
  align-items: center; 
  flex-wrap: wrap; 
  justify-content: flex-end; 
}

.as-links a { 
  color: rgba(255,255,255,.86); 
  font-weight: 800; 
  padding: 8px 10px; 
  border-radius: 999px; 
  text-decoration: none; 
  transition: .2s ease;
}

.as-links a:hover { 
  background: rgba(255,255,255,.10); 
  color: #fff; 
}

.as-links a.is-active { 
  background: rgba(59,130,246,.22); 
  border: 1px solid rgba(59,130,246,.35); 
  color: #fff; 
}

.as-cta {
  background: #1d4ed8; 
  color: #fff !important;
  padding: 8px 14px; 
  border-radius: 999px; 
  font-weight: 900;
  white-space: nowrap;
}

.as-cta:hover { 
  background: #2563eb; 
}

/* =========================
   HAMBURGER BUTTON
========================= */

.as-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s ease;
}

.as-burger:hover { 
  background: rgba(255,255,255,.12); 
}

.as-burger:focus-visible { 
  outline: 2px solid #3b82f6; 
  outline-offset: 2px; 
}

.as-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: .25s;
}

.as-burger span::before,
.as-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: .25s;
}

.as-burger span::before { top: -7px; }
.as-burger span::after { top: 7px; }

/* X stanje (otvoren meni) */
.as-burger.is-open span {
  background: transparent;
}

.as-burger.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.as-burger.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =========================
   MOBILE MENI (max-width: 768px)
========================= */

@media screen and (max-width: 768px) {
  
  .as-burger {
    display: flex; /* Prikaži hamburger */
  }
  
  .as-links {
    display: none; /* Sakrij linkove dok je zatvoreno */
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0 4px;
  }
  
  .as-links.is-open {
    display: flex; /* Prikaži kada je otvoreno */
  }
  
  .as-links a {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
  }
  
  .as-links a:hover {
    background: rgba(255,255,255,.12);
  }
  
  .as-links a.is-active {
    background: rgba(59,130,246,.22);
    border-color: rgba(59,130,246,.35);
  }
  
  .as-cta {
    background: #2563eb !important;
    margin-top: 4px;
  }
  
  /* Manji razmak u navigaciji */
  .as-nav {
    flex-wrap: wrap;
  }
}

/* =========================
   DODATNA POBOLJŠANJA
========================= */

/* Sprečavanje dupliranja stilova - uklanjanje starih deklaracija */
.as-topbar, 
.as-topbar-inner {
  /* Ove klase se više ne koriste za navigaciju */
  /* Zadržane radi kompatibilnosti ako se negdje koriste */
}