/*******************************/
/********* Ocean Clean UI ******/
/*******************************/
:root{
  /* barve (Palette A) */
  --brand:#0EA5E9;
  --brand-600:#0284C7;
  --brand-700:#0369A1;
  --dark:#0B1220;
  --text:#334155;
  --muted:#6B7280;
  --page:#F7FAFC;
  --card:#FFFFFF;

  /* oblike & efekti */
  --radius:12px;
  --radius-lg:16px;
  --radius-xl:22px;
  --shadow-sm:0 6px 20px rgba(2,8,23,.08);
  --shadow:0 14px 34px rgba(2,8,23,.14);
  --ring:0 0 0 3px rgba(14,165,233,.35);
}

/*******************************/
/********* General CSS *********/
/*******************************/
body{
  background:
    radial-gradient(1000px 600px at 5% 0%,    rgba(14,165,233,.18), transparent 60%),
    radial-gradient(800px  500px at 100% 12%, rgba(3,105,161,.16),  transparent 65%),
    radial-gradient(900px  700px at 50% 100%, rgba(56,189,248,.14),  transparent 60%),
    var(--page); /* tvoja osnovna barva strani */
  background-repeat: no-repeat;
  background-attachment: scroll;
}
/* na desktopu malo “parallax” feelinga */
@media (min-width: 992px){
  body{
    background-attachment: fixed, fixed, fixed, scroll;
  }
}
h1,h2,h3,h4,h5,h6{ color:var(--dark); }
a{ color:var(--brand-700); transition:.25s; }
a:hover,a:focus{ color:var(--brand); text-decoration:none; outline:none; }

/* Gradient border + radiant fill */
.wrapper{
  position: relative;
  width: min(100%, 1366px);
  margin-inline: auto;
  background:
    radial-gradient(140% 120% at 0% -20%,  rgba(14,165,233,.08), transparent 60%),
    radial-gradient(120% 140% at 100% -30%, rgba(3,105,161,.06),  transparent 60%),
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg, rgba(14,165,233,.18), rgba(3,105,161,.18)) border-box; /* border gradient */
  border: 1px solid transparent;
  border-radius: clamp(12px, 1.6vw, 22px);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}


/* večji “elevate” na desktopu */
@media (min-width: 1200px){
  .wrapper{ box-shadow: var(--shadow); }
}
/* full-bleed na mobitelu */
@media (max-width: 575.98px){
  .wrapper{ border-radius: 0; box-shadow: none; }
}


/* gumbki */
.btn{ transition:.25s; border-radius:12px; }
.btn:focus{ box-shadow:var(--ring); }

/* back to top */
.back-to-top{
  position:fixed; display:none; right:16px; bottom:16px; z-index:9;
  width:46px;height:46px; border-radius:12px; background:var(--brand); color:#fff;
  font-size:22px; line-height:1; box-shadow:var(--shadow);
}
.back-to-top:hover{ background:var(--brand-600); }
.back-to-top i{ padding-top:11px; }

/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar{
  position: relative;
  min-height: 84px;                 /* fleksibilno (lahko raste) */
  padding-block: 10px;              /* vertikalni “air” */
  background: linear-gradient(180deg,#FFFFFF 0%,#F8FBFF 100%);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  border-bottom: 1px solid #E2E8F0;
  z-index: 5;
}

.top-bar .logo{
  padding: 8px 0;
  text-align: left;
  overflow: hidden;
}
.top-bar .logo h1{
  margin: 0;
  color: var(--dark);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar .logo img{
  max-width: 100%;
  max-height: 48px;                 /* malo nižje, bolj elegantno */
  vertical-align: middle;
}

.top-bar .top-bar-item{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.top-bar .top-bar-item:hover{
  background: rgba(14,165,233,.06);
  box-shadow: 0 8px 22px rgba(2,8,23,.06);
}

.top-bar .top-bar-icon{
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg,#E0F2FE,#CFE6F6);
  box-shadow: 0 8px 22px rgba(14,165,233,.18);
  flex: 0 0 46px;
}
.top-bar .top-bar-icon [class^="flaticon-"]::before{
  margin: 0;
  color: var(--brand-700);
  font-size: 24px;                  /* bolj subtilno od 34px */
  line-height: 1;
}

.top-bar .top-bar-text{ padding-left: 0; }
.top-bar .top-bar-text h3{
  margin: 0 0 2px 0;
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2px;
}
.top-bar .top-bar-text p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* vertikalni delilniki med tremi info bloki (desktop) */
@media (min-width: 992px){
  .top-bar{ padding: 0 60px; }
  .top-bar .row > .col-4 + .col-4 .top-bar-item{ 
    border-left: 1px dashed #E2E8F0;
  }
}

/* mobilno: centriranje in “stack” izgled */
@media (max-width: 991.98px){
  .top-bar .logo{ text-align: center; }
  .top-bar .top-bar-item{
    justify-content: center;
    background: #fff;
    border: 1px solid #E2E8F0;
    margin-top: 8px;
  }
  .top-bar .top-bar-icon{ width: 42px; height: 42px; }
  .top-bar .top-bar-icon [class^="flaticon-"]::before{ font-size: 22px; }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar{
  position: relative;
  background: transparent;
  transition: .3s ease;
}
.nav-bar .container-fluid{ padding: 0; }

/* GLASS navbar */
.nav-bar .navbar{
  height: 100%;
  padding: 16px;
  background: rgba(11,18,32,.82) !important;                 /* temen glass */
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 8px 28px rgba(2,8,23,.22);
}

/* STICKY – kompaktnejši, izrazitejša senca */
.nav-bar.nav-sticky{
  position: fixed; top: 0; width: 100%; max-width: 1366px; z-index: 999;
  box-shadow: 0 14px 34px rgba(2,8,23,.26);
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
}
.nav-bar.nav-sticky .navbar{ padding: 12px 16px; }

/* LINKS */
.navbar-dark .navbar-nav .nav-link{
  position: relative;
  padding: 10px 12px 8px;
  color: #E6F6FF;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
  outline: none;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus{
  color: #fff;
  background: rgba(14,165,233,.16);
}
/* aktivna – malo “pill” poudarka */
.navbar-dark .navbar-nav .nav-link.active{
  color: #fff;
  background: linear-gradient(180deg, rgba(14,165,233,.22), rgba(3,105,161,.22));
  box-shadow: inset 0 0 0 1px rgba(14,165,233,.35);
}

/* underline highlight (subtilno, center) */
.navbar-dark .navbar-nav .nav-link::after{
  content: "";
  position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after{ transform: scaleX(1); }

/* DROPDOWN */
.nav-bar .dropdown-menu{
  margin-top: 10px;
  border: 0;
  border-radius: 12px;
  background: #F8FBFF;
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 220px;
}
.nav-bar .dropdown-menu .dropdown-item{
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 500;
  color: var(--text);
  transition: background .2s ease, color .2s ease, padding .2s ease;
}
.nav-bar .dropdown-menu .dropdown-item:hover,
.nav-bar .dropdown-menu .dropdown-item:focus{
  background: rgba(14,165,233,.10);
  color: var(--brand-700);
}
.nav-bar .dropdown-menu .dropdown-divider{ margin: 6px 0; }

/* CTA gumb desno (če ga uporabljaš) */
.nav-bar .btn{
  color: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 8px 14px;
  font-weight: 700;
  transition: background .2s ease, border-color .2s ease;
}
.nav-bar .btn:hover{
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

/* DESKTOP spacing */
@media (min-width: 992px){
  .nav-bar{ padding: 0 75px; }
  .nav-bar.nav-sticky{ padding: 0; }
  .nav-bar .navbar{ padding: 18px; }
  .nav-bar .navbar-brand{ display: none; }
  .nav-bar a.nav-link{
    padding: 10px 14px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .55px;
  }
}

/* MOBILE / TABLET */
@media (max-width: 991.98px){
  .nav-bar .navbar{
    padding: 14px;
    border-radius: 0;                 /* čez cel ekran */
  }
  .nav-bar a.nav-link{
    padding: 10px 10px;
    border-radius: 10px;
  }
  .nav-bar .dropdown-menu{ box-shadow: none; }
  .nav-bar .btn{ display: none; }
}

/* TOGGLER – lepši gumb & ikona */
.navbar-dark .navbar-toggler{
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 12px;
  padding: 6px 10px;
  outline: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.navbar-dark .navbar-toggler:hover,
.navbar-dark .navbar-toggler:focus{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.6);
}
.navbar-dark .navbar-toggler-icon{
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3/svg%3E");
}

/* FOCUS vidnost za dostopnost */
.navbar-dark .navbar-nav .nav-link:focus,
.nav-bar .dropdown-menu .dropdown-item:focus,
.navbar-dark .navbar-toggler:focus{
  box-shadow: 0 0 0 3px rgba(14,165,233,.25);
}

.nav-bar::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:1px;
  background: linear-gradient(90deg, transparent, rgba(14,165,233,.45), transparent);
  pointer-events:none;
}

/*******************************/
/******** Carousel CSS *********/
/*******************************/
.carousel{
  position:relative; width:100%;
  height: clamp(360px, 56vh, 620px);
  margin:0 auto; text-align:center; overflow:hidden; border-bottom-left-radius:var(--radius-xl); border-bottom-right-radius:var(--radius-xl);
}
.carousel .carousel-inner,.carousel .carousel-item{ position:relative; width:100%; height:100%; }
.carousel .carousel-item img{ width:100%; height:100%; object-fit:cover; filter:saturate(.98) contrast(1.03); }
.carousel .carousel-item::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(11,18,32,.55), rgba(11,18,32,.15) 40%, rgba(11,18,32,.60));
}
.carousel .carousel-caption{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; flex-direction:column;
}
.carousel .carousel-caption p{ color:#E6F6FF; font-size:22px; margin-bottom:12px; letter-spacing:.3px; text-shadow:0 2px 10px rgba(0,0,0,.35); }
.carousel .carousel-caption h1{
  color:#fff; font-size:clamp(34px, 5.2vw, 56px); font-weight:800; margin-bottom:28px; line-height:1.1;
  text-shadow:0 6px 26px rgba(0,0,0,.4);
}
.carousel .carousel-caption .btn{
  padding:14px 28px; font-size:16px; font-weight:700; letter-spacing:.6px; text-transform:uppercase;
  color:#fff; background:var(--brand); border:2px solid var(--brand); border-radius:12px;
}
.carousel .carousel-caption .btn:hover{ color:#fff; background:var(--brand-600); border-color:var(--brand-600); }

@media (max-width:767.98px){
  .carousel .carousel-caption p{ font-size:18px; }
  .carousel .carousel-caption .btn{ padding:12px 22px; font-size:15px; }
}

/* FIX: naj overlay ne blokira klika */
.carousel .carousel-item::after{
  pointer-events: none;   /* klik gre čez overlay */
  z-index: 1;
}

/* caption nad overlayem, a pod gumbi */
.carousel .carousel-caption{
  z-index: 2;
}

/* gumbi naj bodo na vrhu */
.carousel .carousel-control-prev,
.carousel .carousel-control-next{
  z-index: 3;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next{
  width: 4rem;
}
.carousel .carousel-control-prev-icon,
.carousel .carousel-control-next-icon{
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header{
  position:relative; margin-bottom:42px; padding:80px 0; text-align:center;
  background:linear-gradient(135deg, var(--brand), var(--brand-700));
  color:#fff; overflow:hidden; border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
}
.page-header h2{ color:#fff; font-size:52px; font-weight:800; margin-bottom:20px; padding-bottom:8px; }
.page-header h2::after{ content:""; position:absolute; width:110px; height:3px; left:50%; transform:translateX(-50%); bottom:0; background:#fff; opacity:.9; }
.page-header a{ padding:0 12px; font-size:20px; color:#E6F6FF; }
.page-header a:hover{ color:#fff; }
.page-header a::after{ content:"/"; margin-left:10px; color:#c9e9fb; }
.page-header a:last-child::after{ display:none; }

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header{ position:relative; width:100%; margin-bottom:34px; }
.section-header p{ color:var(--brand); font-size:16px; font-weight:700; margin-bottom:6px; letter-spacing:.6px; text-transform:uppercase; }
.section-header h2{ margin:0; font-size:40px; font-weight:800; color:var(--dark); }
@media (max-width:767.98px){ .section-header h2{ font-size:28px; } }

/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature{ position:relative; }
.feature .col-md-12{ background:var(--dark); }
.feature .col-md-12:nth-child(2n){ background:#EAF6FF; color:var(--dark); }

.feature .feature-item{
  min-height:10px; padding:26px; display:flex; align-items:center; justify-content:flex-start;
}
.feature .feature-icon{ position:relative; width:60px; display:flex; align-items:center; justify-content:center; }
.feature .feature-icon::before{
  content:""; position:absolute; width:82px; height:82px; top:-20px; left:-11px;
  border-radius:60px; background:radial-gradient(closest-side, rgba(14,165,233,.25), transparent 70%);
}
.feature .feature-icon::after{
  content:""; position:absolute; width:70px; height:70px; top:-10px; left:-5px;
  background:rgba(255,255,255,.06); border-radius:60px;
}
.feature .col-md-12:nth-child(2n) .feature-icon::after{ background:#DFF2FF; }

.feature .feature-icon [class^="flaticon-"]::before{
  position:relative; margin:0; color:var(--brand); font-size:52px; line-height:60px; z-index:1;
}
.feature .feature-text{ padding-left:22px; }
.feature .feature-text h3{ margin:0 0 6px 0; color:#CFF0FF; font-size:22px; font-weight:800; }
.feature .feature-text p{ margin:0; color:#E6F6FF; font-size:16px; opacity:.9; }
.feature .col-md-12:nth-child(2n) h3{ color:var(--brand-700); }
.feature .col-md-12:nth-child(2n) p{ color:#334155; }

/*******************************/
/********** About CSS **********/
/*******************************/
.about{ position:relative; width:100%; padding:60px 0; background:#F7FAFC; }
.about .section-header{ margin-bottom:24px; }
.about .section-header h2{ font-size:34px; font-weight:800; color:var(--dark); }
.about .section-header p{ font-size:16px; color:var(--muted); }
.about .about-text p{ font-size:16px; color:#4B5563; line-height:1.8; margin-bottom:16px; }

.image-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.image-grid img{
  width:100%; border-radius:16px; object-fit:cover; transition:transform .3s ease, box-shadow .3s ease;
  box-shadow:var(--shadow-sm);
}
.image-grid img:hover{ transform:scale(1.03); box-shadow:var(--shadow); }

.about .about-text a.btn{
  margin-top:12px; padding:13px 26px; font-size:16px; font-weight:700; letter-spacing:.6px;
  color:#fff; border-radius:12px; background:var(--brand);
}
.about .about-text a.btn:hover{ background:var(--brand-600); }

/*******************************/
/********* Service CSS *********/
/*******************************/
.service{ padding:60px 0; background:#F7FAFC; }
.service-card{
  background:var(--card); border-radius:16px; padding:22px;
  box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-align:center; display:flex; flex-direction:column; justify-content:space-between; min-height:400px;
  border:1px solid #E2E8F0;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:#CFE6F6; }
.service-img img{ width:100%; height:auto; border-radius:14px; }
.service-title{ font-size:22px; color:var(--dark); font-weight:800; margin:14px 0; }
.service-text{ font-size:16px; color:#4B5563; }

/*******************************/
/*********** Team CSS **********/
/*******************************/
.team{ position:relative; width:100%; padding:45px 0 15px; }
.team .team-item{
  position:relative; margin-bottom:30px; overflow:hidden; border-radius:16px; box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease;
}
.team .team-item:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.team .team-img img{ width:100%; }
.team .team-text{
  position:relative; padding:22px 15px; text-align:center; background:var(--dark); transition:.35s;
}
.team .team-text h2{ font-size:20px; font-weight:800; color:#CFF0FF; transition:.35s; }
.team .team-text p{ margin:0; color:#E6F6FF; }
.team .team-item:hover .team-text{ background:var(--brand-700); }
.team .team-item:hover .team-text h2{ color:#ffffff; letter-spacing:.6px; }

.team .team-social{ position:absolute; width:100px; top:0; left:-50px; display:flex; flex-direction:column; }
.team .team-social a{ left:0; width:50px;height:50px; display:flex; align-items:center; justify-content:center; font-size:18px; color:#fff; }
.team .team-item:hover .team-social a:first-child{ background:#0EA5E9; left:50px; transition:.3s 0s; }
.team .team-item:hover .team-social a:nth-child(2){ background:#2563EB; left:50px; transition:.3s .1s; }
.team .team-item:hover .team-social a:nth-child(3){ background:#0284C7; left:50px; transition:.3s .2s; }
.team .team-item:hover .team-social a:nth-child(4){ background:#38BDF8; left:50px; transition:.3s .3s; }

/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar{ position:relative; width:100%; }
@media(max-width:991.98px){ .sidebar{ margin-top:45px; } }

.sidebar .sidebar-widget{ position:relative; margin-bottom:45px; }
.sidebar .sidebar-widget .widget-title{
  margin-bottom:22px; padding-bottom:8px; font-size:26px; font-weight:800; color:var(--dark);
  border-bottom:2px solid #E2E8F0;
}
.sidebar .sidebar-widget .widget-title::after{
  content:""; position:absolute; bottom:-2px; left:0; height:3px; width:70px; background:var(--brand);
}

.sidebar .search-widget input{
  height:50px; border:1px solid #E2E8F0; border-radius:12px; padding:12px 14px;
}
.sidebar .search-widget input:focus{ box-shadow:var(--ring); border-color:var(--brand); }
.sidebar .search-widget .btn{
  position:absolute; top:6px; right:10px; height:38px; width:42px;
  font-size:20px; color:#fff; background:var(--brand); border-radius:10px; border:none;
}
.sidebar .search-widget .btn:hover{ background:var(--brand-600); }

.single .tag-widget a{
  margin:5px; display:inline-block; padding:7px 15px; font-size:14px; font-weight:600; color:var(--dark);
  border:1px solid #E2E8F0; border-radius:999px; background:#fff; transition:.25s;
}
.single .tag-widget a:hover{ color:#fff; background:var(--brand); border-color:var(--brand); }

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact{ position:relative; width:100%; padding:60px 0; background:#F4F9FF; }
.contact .col-md-6{ padding:40px; }
.contact .col-md-6:first-child{
  background:var(--dark); color:#ffffff; border-radius:16px 0 0 16px;
}
.contact .col-md-6:last-child{
  background:#F7FAFC; border-radius:0 16px 16px 0;
}
.contact .contact-info{ padding:0 20px; }
.contact .contact-item{
  margin-bottom:22px; padding:18px; display:flex; align-items:center; background:#111827;
  border-radius:14px; box-shadow:var(--shadow-sm);
}
.contact .contact-item [class^="flaticon-"]::before{ margin-right:14px; color:var(--brand); font-size:32px; }
.contact .contact-text h2{ color:#CFF0FF; font-size:20px; font-weight:800; }
.contact .contact-text p{ margin:0; color:#D1E2F5; font-size:16px; }

.contact .contact-form{ padding:0 20px; }
.contact .contact-form input,
.contact .contact-form textarea{
  color:#111827; height:50px; padding:15px; border-radius:12px; border:1px solid #E2E8F0; background:#ffffff; margin-bottom:16px;
}
.contact .contact-form textarea{ height:150px; }
.contact .contact-form input:focus,
.contact .contact-form textarea:focus{ border-color:var(--brand); box-shadow:var(--ring); }
.contact .contact-form .btn{
  padding:14px 26px; font-size:16px; font-weight:800; color:#fff; background:var(--brand);
  border:none; border-radius:12px; transition:.25s;
}
.contact .contact-form .btn:hover{ background:var(--brand-600); }

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer{
  position:relative; padding-top:10px; padding-bottom:0; background:var(--dark); color:#ffffff;
  border-bottom-left-radius:var(--radius-xl); border-bottom-right-radius:var(--radius-xl);
}
.footer h2{
  margin-bottom:16px; padding-bottom:10px; font-size:20px; font-weight:800; color:#CFF0FF; position:relative;
}
.footer h2::after{ content:""; position:absolute; width:60px; height:3px; left:0; bottom:0; background:var(--brand); }
.footer .copyright{ padding:12px 0; }
.footer .copyright p{ margin:0; color:#E6F6FF; }
.footer .copyright .col-md-6:last-child p{ text-align:right; }
.footer .copyright p a{ color:var(--brand); font-weight:600; letter-spacing:.5px; }
.footer .copyright p a:hover{ color:#ffffff; }
@media (max-width:768px){
  .footer .copyright p,
  .footer .copyright .col-md-6:last-child p{ margin:5px 0; text-align:center; }
}

/*********************/
/* Ocean Clean – PRO */
/*********************/
:root{
  --radius-2xl:28px;
  --shadow-lg:0 30px 80px rgba(2,8,23,.18);
  --transition: .25s cubic-bezier(.2,.8,.2,1);
}

/* 1) NAV – underline highlight */
.navbar-dark .navbar-nav .nav-link{
  position:relative;
}
.navbar-dark .navbar-nav .nav-link::after{
  content:"";
  position:absolute; left:12px; right:12px; bottom:6px; height:2px;
  background:linear-gradient(90deg,transparent,var(--brand),transparent);
  transform:scaleX(0); transform-origin:center;
  transition:transform var(--transition);
}
.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after{
  transform:scaleX(1);
}

/* 2) BTN varijante (za uporabo kjer rabiš) */
.btn-ghost{
  color:#fff; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
  backdrop-filter:saturate(140%) blur(6px);
}
.btn-ghost:hover{ background:rgba(255,255,255,.18); }
.btn-outline{
  color:var(--brand-700); border:2px solid var(--brand-700); background:transparent;
}
.btn-outline:hover{ color:#fff; background:var(--brand-700); border-color:var(--brand-700); }

/* 3) HERO – bolj vidne puščice & indikatorji */
.carousel .carousel-control-prev,
.carousel .carousel-control-next{
  width:auto; padding:0 12px; opacity:.95;
}
.carousel .carousel-control-prev-icon,
.carousel .carousel-control-next-icon{
  width:3rem; height:3rem; border-radius:999px;
  background-color:rgba(11,18,32,.6);
  background-size:50% 50%; background-position:center; background-repeat:no-repeat;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
}
/* SVG ikone z belo puščico */
.carousel .carousel-control-prev-icon{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 20 20' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4l-6 6 6 6'/%3E%3C/svg%3E");
}
.carousel .carousel-control-next-icon{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 20 20' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 4l6 6-6 6'/%3E%3C/svg%3E");
}

.carousel-indicators [data-bs-target],
.carousel-indicators li{
  width:12px; height:12px; margin:0 6px; border-radius:999px;
  background:#CFE6F6; opacity:1;
}
.carousel-indicators .active{
  width:28px; background:var(--brand);
}

/* 4) KARTICE – premium “gradient border” na hover */
.service-card{
  border:1px solid #E2E8F0;
  background:linear-gradient(#fff,#fff) padding-box,
             linear-gradient(135deg, rgba(14,165,233,.35), rgba(3,105,161,.35)) border-box;
  border-radius:16px; border:1px solid transparent;
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
}

/* 5) Slike – nežna “lift” animacija */
.image-grid img{ transition:transform var(--transition), box-shadow var(--transition); }
.image-grid img:hover{ transform:translateY(-4px) scale(1.02); }

/* 6) TEAM – mehkejši “elevate” */
.team .team-item{ transition:transform var(--transition), box-shadow var(--transition); }
.team .team-item:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }

/* 7) Sidebar – gumb za search bolj “tactile” */
.sidebar .search-widget .btn{
  box-shadow:0 8px 22px rgba(14,165,233,.22);
}
.sidebar .search-widget .btn:hover{ transform:translateY(-1px); }

/* 8) Obrazci – fokus ring in validacija */
.contact .contact-form input:focus,
.contact .contact-form textarea:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(14,165,233,.20);
}
.contact .contact-form input.is-invalid,
.contact .contact-form textarea.is-invalid{
  border-color:#ef4444;
  box-shadow:0 0 0 4px rgba(239,68,68,.15);
}

/* 9) Utility razredi */
.container-narrow{ max-width:1040px; margin:0 auto; padding:0 16px; }
.lift{ transition:transform var(--transition), box-shadow var(--transition); }
.lift:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.badge{
  display:inline-block; padding:.35rem .6rem; font-weight:700; border-radius:999px; font-size:.8rem;
  background:rgba(14,165,233,.12); color:var(--brand-700);
}

/* 10) Scrollbar (WebKit) */
*::-webkit-scrollbar{ width:10px; height:10px; }
*::-webkit-scrollbar-track{ background:transparent; }
*::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg, var(--brand-700), var(--brand));
  border-radius:20px;
}

/* 11) Dostopnost – manj animacij za tiste, ki to želijo */
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}





/********************************************
 * O nas – POLISHED LAYOUT (dodaš na konec)
 ********************************************/

/* 1) Tipografija & osnovni ritmi */
body{
  font-family:'Inter','Poppins',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
}
.o-about .section-header p{
  color:var(--brand-700); font-weight:800; letter-spacing:.5px; text-transform:uppercase; margin-bottom:8px;
}
.o-about .section-header h2{
  color:var(--dark); font-size:clamp(28px,3.2vw,44px); font-weight:900; line-height:1.12; margin:0 0 10px;
  position:relative; padding-bottom:8px;
}
.o-about .section-header h2::after{
  content:""; position:absolute; left:0; bottom:0; width:80px; height:3px;
  background:linear-gradient(90deg,var(--brand),transparent 80%);
  border-radius:999px;
}

/* 2) Section ozadje (nežno, poslovno) */
.about.o-about{
  position:relative; background:linear-gradient(180deg,#F8FBFF 0%, #F4F9FF 100%);
}
.about.o-about::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(900px 380px at 0% 0%, rgba(14,165,233,.12), transparent 60%),
    radial-gradient(800px 420px at 100% 0%, rgba(3,105,161,.10), transparent 60%);
}
.about.o-about .container{ position:relative; z-index:1; max-width:1140px; }

/* 3) Primarni gumb (robustnejši) */
.btn-primary{
  background:var(--brand); border-color:var(--brand); color:#fff; font-weight:800;
  border-radius:12px; padding:12px 20px; transition:.25s ease;
  box-shadow:0 10px 26px rgba(14,165,233,.22);
}
.btn-primary:hover{ background:var(--brand-600); border-color:var(--brand-600); transform:translateY(-1px); }

/* 4) Ikonična lista – čitljivo in zračno */
.o-icon-list{ list-style:none; padding:0; margin:0; }
.o-icon-list li{
  display:grid; grid-template-columns:26px 1fr; gap:12px; align-items:flex-start;
  padding:12px 0; border-bottom:1px dashed #E2E8F0;
}
.o-icon-list li:last-child{ border-bottom:0; }
.o-icon-list i{ color:var(--brand); font-size:1.1rem; margin-top:2px; }

/* 5) “Pills” – ciljna publika */
.o-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; margin:6px 10px 6px 0; font-weight:700; border-radius:999px; font-size:.95rem;
  color:var(--brand-700);
  background:linear-gradient(#fff,#fff) padding-box,
             linear-gradient(135deg, rgba(14,165,233,.25), rgba(3,105,161,.25)) border-box;
  border:1px solid transparent; box-shadow:0 6px 18px rgba(2,8,23,.06);
}
.o-pill i{ color:var(--brand); }

/* 6) Sektorji – mreža + kartice (enaka višina) */
.o-sectors{
  display:grid; grid-template-columns:repeat(2,minmax(240px,1fr)); gap:16px;
}
@media (max-width:991.98px){ .o-sectors{ grid-template-columns:1fr; } }

.o-card{
  position:relative; display:flex; flex-direction:column; gap:8px;
  min-height:152px;
  padding:18px 16px; border-radius:16px;
  background:linear-gradient(#fff,#fff) padding-box,
             linear-gradient(135deg, rgba(14,165,233,.35), rgba(3,105,161,.35)) border-box;
  border:1px solid transparent; box-shadow:var(--shadow-sm);
  transition:transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.o-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); }

.o-sector-icon{
  width:46px; height:46px; border-radius:10px; display:grid; place-items:center; color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-700));
  box-shadow:0 10px 22px rgba(14,165,233,.28);
}
.o-card h3{ margin:6px 0 2px; font-size:1.08rem; font-weight:900; color:var(--dark); }
.o-card p{ margin:0; color:#4B5563; line-height:1.55; }

/* 7) Mini statistika – bolj “badge” videz */
.o-stats{
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-top:8px;
}
@media (max-width:575.98px){ .o-stats{ grid-template-columns:1fr; } }
.o-stat{
  padding:14px 16px; border-radius:14px; background:#fff; border:1px solid #E2E8F0;
  box-shadow:0 10px 22px rgba(2,8,23,.06); display:grid; gap:4px;
}
.o-stat strong{ font-size:1.12rem; color:var(--brand-700); font-weight:900; }
.o-stat span{ font-size:.92rem; color:var(--muted); }

/* 8) 4 koraki – s povezovalnimi črtami na desktopu */
.o-steps{
  display:grid; grid-template-columns:repeat(4,minmax(200px,1fr)); gap:16px; margin-top:24px;
}
@media (max-width:991.98px){ .o-steps{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:575.98px){ .o-steps{ grid-template-columns:1fr; } }

.o-step{
  background:#fff; border:1px solid #E2E8F0; border-radius:16px; box-shadow:var(--shadow-sm);
  padding:16px; position:relative;
  transition:transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.o-step:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }

.o-step .num{
  width:36px; height:36px; border-radius:10px; display:grid; place-items:center; color:#fff; font-weight:900;
  background:linear-gradient(135deg,var(--brand),var(--brand-700));
  box-shadow:0 8px 18px rgba(14,165,233,.26); margin-bottom:8px;
}
.o-step h6{ margin:4px 0 6px; font-weight:900; color:var(--dark); }
.o-step p{ margin:0; color:#4B5563; font-size:.95rem; line-height:1.55; }

/* povezovalna linija (samo ≥992px) */
@media (min-width:992px){
  .o-step:not(:last-child)::after{
    content:""; position:absolute; top:34px; right:-8px; width:16px; height:2px;
    background:linear-gradient(90deg,var(--brand),transparent);
    opacity:.55; border-radius:4px;
  }
}

/* 9) FAQ (details) – čisto in interaktivno */
.o-faq{ margin-top:18px; border-top:1px solid #E2E8F0; }
.o-faq details{ border-bottom:1px solid #E2E8F0; padding:12px 0; }
.o-faq details:last-child{ border-bottom:0; }
.o-faq summary{
  cursor:pointer; list-style:none; position:relative; padding-right:28px;
  font-weight:800; color:var(--dark);
}
.o-faq summary::-webkit-details-marker{ display:none; }
.o-faq summary::after{
  content:""; position:absolute; right:4px; top:50%; transform:translateY(-50%) rotate(0);
  width:18px; height:18px; border-radius:50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 66%, transparent 67%),
    conic-gradient(var(--brand) 0 100%);
  box-shadow:0 2px 8px rgba(14,165,233,.25); transition:transform .25s ease;
}
.o-faq details[open] summary::after{ transform:translateY(-50%) rotate(180deg); }
.o-faq details p{ color:#4B5563; }


/* 11) Drobni A11y & hover focus */
a:focus, .btn:focus{ outline:none; box-shadow:0 0 0 3px rgba(14,165,233,.30); }

/* 12) Majhne korekcije spacinga v o-about */
.about .about-text p{ color:#4B5563; margin-bottom:12px; }




/* ================================
   CONTACT – NOV, ČIST DIZAJN
   Uporablja tvoje var(--brand, --dark, ...)
===================================*/

/* Hero */
.c-hero{
  position: relative;
  margin: 18px auto 22px;
  border-radius: clamp(14px, 2vw, 22px);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(3,105,161,.10));
  box-shadow: var(--shadow-sm);
}
.c-hero__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 400px at -10% 0%, rgba(14,165,233,.25), transparent 55%),
    radial-gradient(600px 300px at 110% -10%, rgba(3,105,161,.22), transparent 60%);
  filter: saturate(110%);
  animation: cFloat 14s ease-in-out infinite;
}
.c-hero__inner{
  position: relative; z-index: 1;
  padding: clamp(36px, 6vw, 72px) 0;
  text-align: center;
}
.c-hero__brand{
  display:inline-flex; gap:10px; align-items:center;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,.6);
  border: 1px solid #E2E8F0;
  backdrop-filter: blur(6px);
  animation: fadeUp .6s ease both;
}
.c-hero__brand img{ height: 30px; }
.c-hero__brand span{
  font-weight: 800; color: var(--dark); letter-spacing: .3px;
}
.c-hero h1{
  margin: 12px 0 8px;
  font-weight: 900; color: var(--dark);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.15;
  animation: fadeUp .6s ease .05s both;
}
.c-hero p{
  margin: 0 auto; max-width: 760px;
  color: #475569; font-size: 1.05rem;
  animation: fadeUp .6s ease .1s both;
}

/* Grid */
.c-contact{ padding: 14px 0 50px; }
.c-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(14px, 2.2vw, 22px);
}
@media (max-width: 991.98px){
  .c-grid{ grid-template-columns: 1fr; }
}

/* Cards */
.c-card{
  position: relative;
  border-radius: 16px;
  background: linear-gradient(#fff,#fff) padding-box,
              linear-gradient(135deg, rgba(14,165,233,.35), rgba(3,105,161,.35)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  animation: fadeUp .5s ease both;
}
.c-card h3{
  margin: 0 0 10px;
  padding: 18px 18px 0;
  font-weight: 900; color: var(--dark);
  font-size: 1.2rem;
}
.c-card--form{ padding: 10px 16px 18px; }
.c-card--info{
  padding: 10px 16px 18px;
  background: linear-gradient(180deg, #0B1220, #0B1220) padding-box,
              linear-gradient(135deg, rgba(14,165,233,.35), rgba(3,105,161,.35)) border-box;
}
.c-card--info h3{ color:#CFF0FF; }

/* Form – polirani vnosni elementi */
.c-card--form .form-control,
.c-card--form select{
  height: 50px; border-radius: 12px; border: 1px solid #E2E8F0; background: #fff;
  transition: .25s ease; color:#111827;
}
.c-card--form textarea.form-control{ height:auto; min-height: 150px; }
.c-card--form .form-control:focus, .c-card--form select:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(14,165,233,.18);
  outline: none;
}
.c-card--form label{
  font-weight: 700; color: #0F172A; font-size: .92rem;
}

/* Primary button – skladno z brandom */
.btn-primary{
  background: var(--brand); border-color: var(--brand); color: #fff;
  font-weight: 800; border-radius: 12px; padding: 12px 18px;
  transition: .25s ease;
  box-shadow: 0 10px 22px rgba(14,165,233,.22);
}
.btn-primary:hover{ background: var(--brand-600); border-color: var(--brand-600); }

/* Info list */
.c-info{
  display: grid; grid-template-columns: 44px 1fr; gap: 12px;
  padding: 14px; border-radius: 12px; margin: 10px 0;
  background: #0F172A; border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 8px 16px rgba(2,8,23,.35);
}
.c-info i[class^="flaticon-"]::before{ color: var(--brand); font-size: 30px; }
.c-info strong{ color: #CFF0FF; font-weight: 800; }
.c-info p{ margin: 2px 0 0; color: #D1E2F5; }
.c-info a{ color: #D1E2F5; }
.c-info a:hover{ color: #fff; }

/* Tags (ciljni segmenti) */
.c-tags{ margin: 12px 2px 2px; }
.c-tag{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px; margin: 6px 8px 0 0; border-radius: 999px;
  font-weight: 700; font-size: .92rem; color: #E6F6FF;
  background: rgba(14,165,233,.16); border: 1px solid rgba(255,255,255,.08);
}
.c-tag i{ color:#9BDDF9; }

/* Note */
.c-note{
  margin-top: 12px; padding: 10px 12px; border-radius: 12px;
  background: #0C1627; color: #CFE6F6; border: 1px solid rgba(255,255,255,.08);
  font-weight: 600;
}
.c-note i{ margin-right: 8px; color: #9BDDF9; }

/* Map image placeholder */
.c-map{ margin-top: 14px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.c-map img{ width:100%; height:auto; display:block; filter: saturate(1.02) contrast(1.05); }

/* Micro interactions */
.c-card:hover{ box-shadow: var(--shadow); transform: translateY(-3px); }
.c-card{ transition: box-shadow .25s ease, transform .25s ease; }

/* Animations (CSS-only) */
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}
@keyframes cFloat{
  0%{ transform: translateY(0) }
  50%{ transform: translateY(8px) }
  100%{ transform: translateY(0) }
}







/* GALERIJA MENU */

/* ===== Galerija – filter gumbi ===== */
.gallery-filter-controls {
  gap: .5rem;
}

.gallery-filter-controls .gbtn {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.65rem 0.95rem;
  margin: 0.25rem;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  color: #0b1220;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease, border-color .12s ease;
}

.gallery-filter-controls .gbtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  border-color: #cdd8ea;
}

.gallery-filter-controls .gbtn.active {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  box-shadow: 0 6px 18px rgba(13,110,253,.25);
}

/* nežen fade pri odstranjevanju elementov (Isotope remove) */
#galerija-filter .gallery-grid .gallery-item {
  transition: opacity .18s ease, transform .18s ease;
}
