/******************************

FONTS / COLORS

*******************************/

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
  --font-default: "Nunito", sans-serif;
  --font-primary: "Nunito", sans-serif;
  --font-secondary: "Nunito", sans-serif;
}

:root {
  --color-default: #000000;
  --color-header: #000000;
  --color-primary: #DCA54A;
  --color-primary-light: #E8B666;
  --color-primary-dark: #BF8C39;
  --color-secondary: #fff;
  --color-background: #fff;
  --color-font: #ffffff;
  --color-title: #DCA54A;
  --color-one: #000000;
  --color-two: #0F0F0F;
}

html {
  scroll-behavior: smooth;
}

html, body{
  width: 100%;
  height: 100%;
  background-color: var(--color-default);
  color: var(--color-font);
  font-family: var(--font-default);
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

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

/******************************

MENU

*******************************/

.top-header {
  background: var(--color-two);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  color: var(--color-font);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 40px;
}

.top-header .header-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-font);
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 0 10px;
  background: linear-gradient(135deg, rgba(40,60,148,0.1) 0%, rgba(250,169,48,0.1) 100%);
  backdrop-filter: blur(10px);
  height: 100%;
}

.top-header .header-item .icon-circle,
.top-header .header-item .whatsapp-icon {
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-font);
  font-size: 13px;
  transition: all 0.3s ease;
  object-fit: cover;
}

.top-header .header-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40,60,148,0.2);
  background: linear-gradient(135deg, rgba(40,60,148,0.2) 0%, rgba(250,169,48,0.2) 100%);
}

.top-header .header-item:hover .icon-circle,
.top-header .header-item:hover .whatsapp-icon {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.top-header .address-text,
.top-header .email-text {
  font-weight: 500;
  font-size: 16px;
}

.top-header.scrolled {
  height: 32px;
  gap: 20px;
}

.top-header.scrolled .header-item {
  padding: 0 8px;
}

.top-header.scrolled .icon-circle,
.top-header.scrolled .whatsapp-icon {
  width: 24px;
  height: 24px;
  font-size: 11px;
}

.navbar {
  background: rgba(0,0,0,0.1);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: padding 0.5s ease, background 0.3s ease, top 0.3s ease, box-shadow 0.3s ease;
  top: 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.border {
  position: relative;
  margin: -20px auto 10px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.navbar.scrolled {
  background: var(--color-header);
  padding: 10px 20px;
  backdrop-filter: blur(10px);
  top: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo {
  width: 100px;
  height: auto;
  transition: all 0.3s ease;
  z-index: 1001;
}

.navbar.scrolled .logo {
  width: 80px;
}

.phone-btn {
  background: var(--color-primary);
  color: var(--color-font);
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40,60,148,0.3);
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}

.phone-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.phone-btn:hover::before {
  left: 100%;
}

.phone-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(40,60,148,0.4);
}

.navbar.scrolled .phone-btn {
  padding: 10px 20px;
  font-size: 14px;
}

.language-selector {
  position: relative;
  display: inline-block;
  padding: 0;
}

.language-selector .main-logo {
  width: 20px;
  cursor: pointer;
}

.language-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-two);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.language-options.show {
  display: flex;
}

.language-options img {
  width: 20px;
  cursor: pointer;
  transition: transform 0.2s;
}

.language-options img:hover {
  transform: scale(1.1);
}

.nav-list {
  margin: 0px 100px 0px 0px;
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-list li {
  margin: 0 25px;
  position: relative;
}
.nav-list li.dropdown-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

a {
  position: relative;
  color: inherit;
  text-decoration: none;
  line-height: 24px;
}

a:before, a:after {
  content: '';
  position: absolute;
  transition: transform .5s ease;
}

.nav-list a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 5px 0;
  display: inline-block;
}

.navbar.scrolled .nav-list a {
  font-size: 16px;
}

.nav-list a:hover {
  color: var(--color-primary-dark);
  transform: scale(1.05) translateY(-2px);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-title));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-list a:hover::after {
  width: 80%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.navbar.scrolled .menu-toggle {
  width: 20px;
  height: 16px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--color-primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .bar {
  width: 20px;
  height: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar.scrolled .menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

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

.navbar.scrolled .menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

.dropdown-wrap {
  position: relative;
}

.dropdown-wrap .toggle-submenu {
  color: var(--color-default);
  cursor: pointer;
  margin-left: 0;
  transition: all 0.3s ease;
  font-size: 12px;
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(40,60,148,0.3);
}

.dropdown-wrap .toggle-submenu:hover {
  transform: rotate(180deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(40,60,148,0.4);
}

.custom-submenu {
  display: none;
  position: fixed;
  left: 0;
  width: 100vw;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  list-style: none;
  padding: 30px 20px;
  margin: 0;
  z-index: 998;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 0 0 15px 15px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-height: 500px;
  overflow-y: auto;
}

.navbar.scrolled .custom-submenu {
  margin: -30px 0px 0px 0px;
}

.custom-submenu::-webkit-scrollbar {
  width: 6px;
}

.custom-submenu::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 3px;
}

.custom-submenu::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--color-primary), var(--color-title));
  border-radius: 3px;
}

.custom-submenu li {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.custom-submenu li a {
  color: var(--color-font);
  text-decoration: none;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-submenu li a .icon {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-default);
  font-size: 11px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(40,60,148,0.2);
}

.custom-submenu li a:hover {
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(40,60,148,0.05) 0%, rgba(250,169,48,0.05) 100%);
  transform: translateX(8px);
  padding-left: 25px;
  box-shadow: 0 4px 15px rgba(40,60,148,0.1);
}

.dropdown-wrap.open .custom-submenu {
  display: grid;
}

/******************************

HERO

*******************************/

    .hero {
      position: relative;
      height: 100vh;
      min-height: 520px;
      overflow: hidden;
      isolation: isolate;           /* važno za stacking context */
      will-change: transform;
      transform: translate3d(0,0,0); /* hardverska akceleracija */
      backface-visibility: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("https://www.taxi-hut.at/img/taxi-hut-245.jpg");
	  background-position: center;
	  background-size: cover;
	  background-repeat: no-repeat;
	  background-attachment: fixed;
      will-change: transform;
      backface-visibility: hidden;
      transform: translate3d(0,0,0);
    }

    .hero-overlay {
      position: absolute;
      inset: auto 0 0 0;
      height: 140px;                /* fiksna visina – nema reflow-a */
      background: rgba(0, 0, 0, 0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 5vw;
      text-align: center;

      opacity: 0;
      transform: translate3d(0, 30px, 0);
      will-change: opacity, transform;
      backface-visibility: hidden;
      animation: overlayIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    .hero-text {
      opacity: 0;
      transform: translate3d(0, 20px, 0);
      will-change: opacity, transform;
      backface-visibility: hidden;
      animation: textIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
      animation-delay: 0.7s;
    }

    .hero-text h1 {
      font-size: clamp(1.55rem, 4.8vw, 2.6rem);
      font-weight: 700;
      line-height: 1.3;
      margin: 0;
      text-shadow: 0 2px 12px rgba(0,0,0,0.9);
	  color: var(--color-primary);
    }

    @keyframes overlayIn {
      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    @keyframes textIn {
      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    /* ──────────────────────────────────────────────── */
    /* MOBILNI */
    @media (max-width: 768px) {
      .hero {
        height: 62vh;
        min-height: 420px;
      }
      .hero-overlay {
        height: 120px;
        animation-duration: 0.8s;
      }
      .hero-text {
        animation-delay: 0.55s;
        transform: translate3d(0, 16px, 0);
      }
      h1 {
        font-size: clamp(1.4rem, 5.8vw, 2.1rem);
      }
    }

    @media (max-width: 480px) {
      .hero {
        height: 58vh;
      }
      .hero-overlay {
        height: 110px;
      }
    }

/******************************

SECTIONS

*******************************/

.section {
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin: auto;
}

.section-page {
  margin: 90px 0px 0px 0px !important;
  padding: 70px 0px 0px 0px !important;
  overflow: hidden;
  margin: auto;
}

.section-primary {
  padding: 80px 0px 0px 0px;
  background-color: var(--color-primary-dark);
}

.section-primary h2,
.section-primary h3 {
  color: var(--color-two) !important;
}

.section-primary .box p {
  color: var(--color-one) !important;
}

.section-primary .box i {
  background-color: var(--color-primary-light) !important;
}

.section-primary .box a {
  color: var(--color-one) !important;
}

.section-qta {
  position: relative;
  padding: 100px 0;
  background-image: url("https://localhost/taxi-bregenz/img/taxi-hut-2.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.section-qta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.qta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section-qta * {
  position: relative;
  z-index: 2;
}

.section-qta h2 {
  font-size: 48px;
  margin: 0px 24px 30px 24px;
  color: var(--color-title);
  margin-bottom: 24px;
  font-weight: 800;
}

.section-qta h3 {
  margin: 0px 24px 30px 24px;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--color-font);
}

.section-qta p {
  font-size: 18px;
  margin: 0px 24px 30px 24px;
  color: var(--color-one);
  margin: 0px 24px 30px 24px;
  text-align: center;
}

.qta-btn {
  position: relative;
  display: grid;
  padding: 0px 24px 30px 24px !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.qta-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.qta-btn-call,
.swipe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-primary-light);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.qta-btn-call:hover,
.swipe:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-font);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.phone-btn i {
  color: #4CAF50;
}

.email-btn i {
  color: #2196F3;
}

.section-one {
  padding: 80px 0px 0px 0px;
  background-color: var(--color-one);
}

.section-two {
  padding: 80px 0 0 0;
  background-color: var(--color-two);
}
	
.section h1,
.section h2 {
  margin: 0px 24px 30px 24px;
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-title);
}

.section h3 {
  margin: 0px 24px 30px 24px;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
}

.section h5 {
  text-align: center;
  width: 90%;
  margin: auto;
  font-size: 18px;
  font-weight: 400;
}

.section h5 span {
  font-weight: 700;
  color: var(--color-font);
}

.blog {
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog .post {
  padding: 30px;
  text-align: left;
  width: 100%;
  max-width: 800px;
}

.map-container {
  position: relative;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding-bottom: 34px;
}

.container {
  position: relative;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  height: auto;
  padding-bottom: 34px;
}

.container .box {
  position: relative;
  float: left;
  width: 550px;
  height: auto;
  margin: 34px 0px 0px 34px;
}

.container .box .box-grid {
  position: relative;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  height: auto;
}

.container .box .box-grid div {
  float: left;
  padding: 12px 0px 12px 0px;
  width: 31%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--color-primary-dark);
  background: linear-gradient(135deg, var(--color-two) 0%, var(--color-one) 100%);
}

.container .box .box-grid div:hover {
  background: linear-gradient(135deg, var(--color-one) 0%, var(--color-two) 100%);
}

.feature-box {
  padding: 32px 24px;
  text-align: center;
  border-radius: 16px;
  background: var(--color-one);
  border-left: 5px solid var(--color-primary);
  background: var(--color-two);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 1px 4px rgba(0, 0, 0, 0.02);
  
  transition: 
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
  overflow: hidden;
  position: relative;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: var(--color-primary);
  transition: height 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.05);
}

.feature-box:hover::before {
  height: 100%;
}

.feature-box:hover {
  border-left-color: var(--color-primary);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(var(--color-primary-rgb), 0.1);
}

.container .box h1,
.container .card h1,
.blog .post h1 {
  text-align: left;
  margin: 20px 24px 0px 24px;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.container .box h2,
.container .card h2,
.blog .post h2 {
  text-align: left;
  margin: 20px 24px 0px 24px !important;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.container .box h3,
.container .card h3,
.blog .post h3 {
  text-align: left !important;
  margin: 20px 24px 0px 24px !important;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-font);
}

.container .box h4,
.container .card h4,
.blog .post h4 {
  text-align: left;
  margin: 20px 24px 0px 24px !important;
  font-size: 20px;
  font-style: italic;
  font-weight: 800;
  color: var(--color-title);
}

.container .box h5,
.container .card h5,
.blog .post h5 {
  text-align: left;
  margin: 20px 24px 0px 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-font);
}

.container .box h6,
.container .card h6,
.blog .post h6 {
  text-align: left;
  margin: 20px 24px 0px 24px;
  font-size: 18px;
  font-weight: 200;
  color: var(--color-font);
}

.blog .post a {
  all: unset;
  display: inline;
  vertical-align: middle;
  font-size: 18px;
  text-transform: none;
  text-align: left;
  color: var(--color-primary-light);
  cursor: pointer;
}

.blog .post a::before {
  content: none;
}

.blog .post a:hover {
  color: var(--color-font);
  background-color: transparent;
  transform: none;
  box-shadow: none;
}

.blog .post ul li {
  list-style: none;
  position: relative;
  padding: 3px 0px 3px 20px;
}

.blog .post ul li::before {
  content: "\f10c";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-title);
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  animation: softPulse 2s infinite ease-in-out;
}

.container .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.container .box ul {
  padding-left: 0;
}

.container .box ul li {
  list-style: none;
  position: relative;
  padding: 3px 0px 3px 34px;
}

.container .box ul li::before {
  /***content: "\f00c";
  font-family: "FontAwesome";***/
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  color: var(--color-one);
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  animation: softPulse 2s infinite ease-in-out;
}

.container .card {
  position: relative;
  margin: 0 0 24px 28px;
  float: left;
  width: 350px;
  background: linear-gradient(135deg, var(--color-two) 0%, var(--color-one) 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); 
  transition: 
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease;
}

.container .card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-primary);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.container .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.container .card:hover::after {
  opacity: 0.6;
}

.container .card:hover {
    background: linear-gradient(135deg, var(--color-one) 0%, var(--color-two) 100%);
}

.container .card.special,
.container .box.special {
  border: 2px solid var(--color-primary);
  box-shadow: 0 6px 20px rgba(40, 60, 148, 0.08);
  transform: translateY(-4px);
}

.container .box.special {
  background: linear-gradient(135deg, var(--color-two) 0%, var(--color-one) 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); 
  transition: 
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease;
}

.container .box.special::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-primary);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.container .box.special:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.container .box.special:hover::after {
  opacity: 0.6;
}

.container .box.special:hover {
  background: linear-gradient(135deg, var(--color-one) 0%, var(--color-two) 100%);
}

.container .card.special:hover,
.container .box.special:hover {
  border: none !important;
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(220, 165, 74, 0.16);
}

.container .card.special:after,
.container .box.special:after {
  border: none !important;
}

.container .card:hover .content {
  color: var(--color-primary-dark);
}

.section .card:hover .content .contentBx h3,
.section .card:hover .content .contentBx h4,
.section .card:hover .content .contentBx h5 {
  color: var(--color-primary-dark);
}

.container .card:hover .content .imgBlog,
.container .card:hover .content .imgBx {
  opacity: 0.4;
}

@keyframes border-glow {
  0% {
    border-top-color: var(--color-two);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    box-shadow: 0 0 10px var(--color-two);
  }
  25% {
    border-top-color: transparent;
    border-right-color: var(--color-two);
    box-shadow: 0 0 10px var(--color-two);
  }
  50% {
    border-right-color: transparent;
    border-bottom-color: var(--color-two);
    box-shadow: 0 0 10px var(--color-two);
  }
  75% {
    border-bottom-color: transparent;
    border-left-color: var(--color-two);
    box-shadow: 0 0 10px var(--color-two);
  }
  100% {
    border-left-color: transparent;
    border-top-color: var(--color-two);
    box-shadow: 0 0 10px var(--color-two);
  }
}

.container .card .content,
.container .box .content {
  position: relative;
  padding: 20px 14px 20px 14px !important;
}

.container .card .content .imgBx img {
  position: relative;
  width: 100%;
  height: auto;
  transition: all 0.5s ease-in-out;
}

.container .card:hover .content .imgBx img {
  transform: scale(1.08);
}

.container .card .content .imgBlog {
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.container .card .content .icon {
  margin: 5px 5px 5px 0px;
  display: inline-block;
  color: var(--color-two);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-header) 100%);
  width: 80px;
  text-align: center;
  line-height: 80px;
  font-size: 34px;
  font-weight: 700;
  border: 1px solid var(--color-two);
  border-top-right-radius: 18px;
  border-bottom-left-radius: 18px;
}

.container .card .content .imgBlog {
  position: relative;
  width: 100%;
  height: 240px;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.container .card .content .imgBlog::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 4px solid rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.container .card .content .imgBlog img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.container .card:hover .content .icon,
.container .box:hover i {
  background: linear-gradient(135deg, var(--color-header) 0%, var(--color-primary-dark) 100%);
}

.container .card:hover .content .imgBlog {
  box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.2), 0 16px 40px rgba(0, 0, 0, 0.18);
}

.container .card:hover .content .imgBlog::before {
  opacity: 1;
  border-color: #6366f1;
}

.container .card:hover .content .imgBlog img {
  transform: scale(1.08);
}

.container .card .content .contentBx h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.container .card .content .contentBx h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.container .card .content .contentBx p {
  margin: 0 0 1.5rem 0;
  color: var(--color-font);
  line-height: 1.6;
}

.container .card .content .contentBx .border {
  position: relative;
  margin: 20px auto 10px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.liquid {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #283c94;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  border-radius: 8px;
  pointer-events: none;
}

a:has(.liquid) {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0.5rem auto;
  padding: 12px 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  background-color: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: 90%;
  padding: 0.8rem;
  box-sizing: border-box;
}

a:has(.liquid) span {
  position: relative;
  z-index: 2;
  color: inherit;
}

a:has(.liquid):hover .liquid {
  left: 0;
}

a:has(.liquid):hover {
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(40, 60, 148, 0.25);
}

.container .card .content .contentBx p {
  font-size: 16px; 
  font-weight: 300;
  text-transform: initial;
  margin: 20px 24px 20px 24px;
}

.container .card a,
.container .box a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0.5rem auto;
  padding: 12px 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  background-color: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.container .card a span,
.container .box a span {
  position: relative;
  z-index: 2;
  color: inherit;
}

.container .card a::before,
.container .box a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.container .card a:hover::before,
.container .box a:hover::before {
  left: 0;
}

.container .card a:hover,
.container .box a:hover {
  color: var(--color-font);
  border-color: var(--color-primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(40, 60, 148, 0.25);
}

.container .post {
  width: 94%;
  margin: 20px auto;
}

.container .poravnanje {
  font-size: 18px;
  text-align: left;
  margin: 12px 12px 0px 12px;
}

.container .link-btn {
  position: relative;
  padding: 8px 22px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  background-color: var(--color-primary);
  float: right;
  color: #000;
  border-radius: 26px;
  border: 1px solid #000;
  font-size: 18px;
  transition: all 0.5s ease-in-out;
}

.container .link-btn:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #ababab, 4px 4px 10px #ababab;
}

.container .link-a {
  position: relative;
  width: 280px;
  padding: 8px 22px;
  margin: 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  background-color: var(--color-primary);
  float: none;
  color: #000;
  border-radius: 26px;
  border: 1px solid #000;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
}

.container .link-a:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #ababab, 4px 4px 10px #ababab;
}

.container .box p,
.container-b .box-b p,
.container-b .card p,
.blog .post p {
  font-size: 18px;
  margin: 20px 24px 0px 24px;
}

.container .box .white-font {
  color: var(--color-default);
}

.container span {
  font-weight: 700;
}

.line-up {
  border-top: 1px solid #f0f0f0;
}

.container-b {
  position: relative;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  height: auto;
  background-color: transparent;
  color: #f0f0f0;
  padding-bottom: 34px;
}

.container-b .box-b {
  position: relative;
  float: left;
  width: 350px;
  height: auto;
  font-size: 18px;
  margin: 34px 0px 0px 34px;
  text-align: center;
}

.container-b .f-line {
  position: relative;
  width: 1px;
  height: auto;
  background: linear-gradient(60deg, transparent, var(--color-primary), transparent);
}

.container-b .box-b p {
  padding: 0 0 12px 0;
  font-size: 16px;
  text-align: left;
  margin: 12px 0 0 0;
  width: 97%;
  position: relative;
  border-bottom: none;
}

.container-b .box-b p::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(60deg, transparent, var(--color-primary), transparent);
}

.container-b .box-b p:hover {
  opacity: 0.6;
}

.container-b .box-b p:last-child {
  border-bottom: none;
}

.container .box i {
  margin: 20px;
  display: inline-block;
  color: var(--color-font);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-header) 100%);
  width: 80px;
  text-align: center;
  line-height: 80px;
  font-size: 50px;
  font-weight: 700;
  border: 1px solid var(--color-two);
  border-top-right-radius: 18px;
  border-bottom-left-radius: 18px;
}

.container-b .box-b i {
  margin: 5px 5px 5px 0px;
  display: inline-block;
  color: var(--color-font);
  background-color: var(--color-primary-dark);
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid var(--color-two);
  border-top-right-radius: 18px;
  border-bottom-left-radius: 18px;
}

.container-b .box-b h4 {
  font-size: 36px;
  color: var(--color-primary);
  text-align: center;
  margin: 6px auto;
}

.container-b .box-b .web {
  color: var(--color-primary);
}

/******************************

HGF

*******************************/

.blog .post .accordion {
  background-color: transparent;
  color: var(--color-font);
  cursor: pointer;
  padding: 20px;
  margin: 0 0 12px 0;
  width: 100%;
  border: 1.5px solid var(--color-default);
  border-radius: 12px;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.blog .post .accordion:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog .post .active {
  background: linear-gradient(135deg, var(--color-one), var(--color-one) 80%, rgba(0, 0, 0, 0.05));
  transform: translateY(0) scale(1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog .accordion:after {
  content: '\002B';
  color: var(--color-primary);
  font-weight: bold;
  font-size: 20px;
  float: right;
  margin-left: 10px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.blog .post .active:after {
  content: "\2212";
  color: var(--color-primary-dark);
  transform: rotate(180deg);
}

.blog .panel {
  padding: 0 20px 20px;
  background-color: rgba(0, 0, 0, 0.02);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  border-radius: 0 0 12px 12px;
}

.blog .post .active + .panel {
  max-height: 500px;
  padding: 20px;
}

.blog .post .panel {
  padding: 0 18px;
  background-color: var(--color-one);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.blog .post .panel p {
  font-size: 14px;
  color: var(--color-font);
}

.blog .post .panel a {
  all: unset;
  display: inline;
  vertical-align: middle;
  font-size: 18px;
  text-transform: none;
  text-align: left;
  color: #1b2e7e;
  cursor: pointer;
}

.blog .post .panel a::before {
  content: none;
}

.blog .post .panel a:hover {
  color: #faa930;
  background-color: transparent;
  transform: none;
  box-shadow: none;
}

/******************************

HGF

*******************************/

.blog .box .accordion {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-header) 100%);
  color: var(--color-two);
  cursor: pointer;
  padding: 20px;
  margin: 0 0 12px 0;
  width: 100%;
  border: 1.5px solid var(--color-default);
  border-radius: 12px;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.blog .box .accordion:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, var(--color-header) 0%, var(--color-primary) 100%);
}

.blog .box .active {
  background: var(--color-header);
  transform: translateY(0) scale(1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog .accordion:after {
  content: '\002B';
  color: var(--color-primary);
  font-weight: bold;
  font-size: 20px;
  float: right;
  margin-left: 10px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.blog .box .active:after {
  content: "\2212";
  color: var(--color-primary-dark);
  transform: rotate(180deg);
}

.blog .panel {
  padding: 0 20px 20px;
  background-color: var(--color-one);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  border-radius: 0 0 12px 12px;
}

.blog .box .active + .panel {
  max-height: 500px;
  padding: 20px;
}

.blog .box .panel {
  padding: 0 18px;
  background-color: var(--color-one);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.blog .box .panel p {
  font-size: 14px;
  color: var(--color-font);
}

.blog .box .panel a {
  all: unset;
  display: inline;
  vertical-align: middle;
  font-size: 18px;
  text-transform: none;
  text-align: left;
  color: #1b2e7e;
  cursor: pointer;
}

.blog .box .panel a::before {
  content: none;
}

.blog .box .panel a:hover {
  color: #faa930;
  background-color: transparent;
  transform: none;
  box-shadow: none;
}

/******************************

GALLERY

*******************************/

.gallery-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0px 0px 0px;
  margin: 50px auto;
  width: 1200px;
  height: auto;
  border-radius: 8px;
}

.gallery-container h4 {
  position: relative;
  width: 100%;
  padding: 0px 0px 10px 0px;
  text-align: center;
  font-size: 18px;
  color: var(--color-primary);
}

.gallery-container .gallery-item {
  position: relative;
  margin: 0px 0px 20px 20px;
  float: left;
  width: 275px;
  height: auto;
  transition: 0.5s ease-in-out;
}

.gallery-container .gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); 
  transition: 
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease;
}

.gallery-container .gallery-item img:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.lightbox {
  position: fixed;
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100vh;              
  overflow: auto;
  top: 0;
  left: 0;
  z-index: 9999;
}

.lightbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lightbox-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  margin: auto;
}

.lightbox-content img {
  border-radius: 8px;
  box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
  border: 2px solid #252525;
  width: 520px;
  height: auto;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.lightbox-content img:hover {
  transform: translate(0px,-5px);
  box-shadow: -4px -4px 10px #000, 4px 4px 10px #000;
}

.lightbox-prev,
.lightbox-next {
  position: absolute !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
  background-color: var(--color-primary);
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 10px !important;
  color: var(--color-one) !important;
  border: 2px solid #252525;
  top: 45% !important;
  cursor: pointer !important;
}

.lightbox-next {
  margin: 0px -120px 0px 0px;
  right: 0;
  opacity: 0.5;
}

.lightbox-prev {
  margin: 0px 0px 0px -120px;
  left: 0;
  opacity: 0.5;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  top: 30px;
  right: 30px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background-color: var(--color-primary);
  color: var(--color-default);
  font-size: 28px;
  border: 2px solid #252525;
  border-radius: 100px;
  z-index: 1000;
}

/******************************

FOOTER

*******************************/

.footer {
  padding: 50px 0px 0px 0px;
  background: #000000;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.copyright {
  position: relative;
  background: #000;
  width: 100%;
  height: 42px;
  float: left;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
}

.copyright .border-line {
  position: relative;
  display: block;
  margin: auto;
  width: 100%;
  height: 1px;
  background: linear-gradient(60deg, transparent, var(--color-primary), transparent);
}

.copyright p {
  margin: 10px auto;
  color: #f0f0f0;
  font-size: 14px;
}

/******************************

PAGE HEADER

*******************************/

.blog-header {
  position: relative;
  height: 50px;
  margin: 90px auto 0;
  background-color: transparent;
}

.page-header {
  position: relative;
  height: 600px;
  margin: 0 auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-one);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,     /* skoro crno gore */
    rgba(0, 0, 0, 0.80) 35%,
    rgba(0, 0, 0, 0.50) 50%,     /* najsvetlije (ali još uvek crno) u sredini */
    rgba(0, 0, 0, 0.80) 65%,
    rgba(0, 0, 0, 0.95) 100%     /* skoro crno dole */
  );
  z-index: 1;
}

.page-header h1 {
  position: relative;
  z-index: 2;
  font-size: 50px;
  font-weight: 700;
  margin: 0 20px 20px;
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-font);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.breadcrumb {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--color-two);
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

.breadcrumb p {
  margin: 0;
  display: inline;
  color: var(--color-primary-light);
}

.breadcrumb a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--color-primary-dark);
}

.breadcrumb span {
  color: #e7a300;
  font-weight: bold;
}

.breadcrumb i {
  color: #e7a300;
  font-size: 16px;
}

.header-404 {
  position: relative;
  margin: 90px auto;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

/******************************

FORMS

*******************************/

/* =============================================
   Booking Form - Modern Dark Theme
   Koristi samo tvoje :root boje
   ============================================= */

#bookingForm {
    max-width: 520px;
    width: 100%;
    margin: 2rem auto;
    padding: 2.5rem 2rem;
    background: #0F0F0F;           /* --color-two ili malo svetlije od čiste crne */
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7);
    border: 1px solid rgba(220, 165, 74, 0.12); /* suptilan zlatni obrub */
    color: #e0e0e0;
    font-family: system-ui, -apple-system, sans-serif;
}

#bookingForm label {
    display: block;
    margin: 1.5rem 0 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #DCA54A;                /* --color-title / --color-primary */
}

#bookingForm input[type="text"],
#bookingForm input[type="email"],
#bookingForm input[type="tel"],
#bookingForm select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid #333;
    border-radius: 10px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.22s ease;
}

#bookingForm input:focus,
#bookingForm select:focus {
    outline: none;
    border-color: #DCA54A;
    box-shadow: 0 0 0 3px rgba(220, 165, 74, 0.18);
    background: #222;
}

#bookingForm select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23DCA54A' d='M6 9l4-4H2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

/* Telefon + vorwahl u redu */
#bookingForm .error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.35rem;
    min-height: 1.2rem;
}

fieldset {
    margin: 1.8rem 0;
    padding: 1.2rem;
    border: 1px solid #333;
    border-radius: 12px;
    background: #111;
}

legend {
    padding: 0 12px;
    font-weight: 600;
    color: #DCA54A;
    background: #0F0F0F;
}

fieldset label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0.8rem 0;
    color: #ddd;
    font-weight: normal;
}

input[type="radio"],
input[type="checkbox"] {
    accent-color: #DCA54A;
    width: 1.15rem;
    height: 1.15rem;
}

/* Dugme */
#bookingForm button[type="submit"] {
    width: 100%;
    margin-top: 2rem;
    padding: 1.1rem;
    background: #DCA54A;           /* --color-primary */
    color: #000000;                /* --color-default */
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(220, 165, 74, 0.25);
}

#bookingForm button[type="submit"]:hover {
    background: #E8B666;           /* --color-primary-light */
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 165, 74, 0.35);
}

#bookingForm button[type="submit"]:active {
    transform: translateY(0);
}

/* Success & WhatsApp */
#success {
    display: none;                    /* početno skriveno – JS ga pokazuje */
    margin: 2.5rem 0 1.5rem;
    padding: 1.4rem 1.8rem;
    background: rgba(220, 165, 74, 0.10);   /* vrlo suptilna zlatna pozadina */
    border: 1px solid rgba(220, 165, 74, 0.35);
    border-left: 5px solid #DCA54A;         /* zlatna leva linija za naglasak */
    border-radius: 12px;
    color: #E8B666;                         /* --color-primary-light – vidljivo na tamnoj podlozi */
    font-size: 1.05rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 4px 20px rgba(220, 165, 74, 0.15);
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.45s ease-out;
}

/* Kada JS postavi display:block, dodajemo animaciju */
#success[style*="block"] {
    opacity: 1;
    transform: translateY(0);
}

/* Ikonica checkmark (opciono – možeš dodati HTML ili samo CSS) */
#success::before {
    content: "✓";
    display: inline-block;
    margin-right: 12px;
    font-size: 1.4rem;
    color: #DCA54A;
    font-weight: bold;
}

/* Ako želiš još jači "success" efekat – blagi pulse/glow */
@keyframes successPulse {
    0%   { box-shadow: 0 0 0 0 rgba(220, 165, 74, 0.4); }
    70%  { box-shadow: 0 0 0 12px rgba(220, 165, 74, 0.0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 165, 74, 0.0); }
}

#success[style*="block"] {
    animation: successPulse 1.8s ease-out 0.3s;
}

#waButton a {
    width: 100%;
    display: block;
    text-align: center;
    background: #25D366 !important;
    color: white !important;
    padding: 1rem !important;
    border-radius: 12px !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

#waButton a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* Mali ekrani */
@media (max-width: 480px) {
    #bookingForm {
        padding: 1.8rem 1.4rem;
        margin: 1rem auto;
        border-radius: 12px;
    }
    
    #bookingForm button[type="submit"] {
        padding: 1rem;
    }
}

/******************************

TESTIMONIALS

*******************************/
.testimonials-container {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
  box-sizing: border-box;
  padding: 0 15px;
}

.google-box {
  flex: 0 0 300px;
  background: var(--color-default);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: sticky;
  top: 100px;
  align-self: start;
}

.google-box i {
  font-size: 80px;
  color: #4285F4;
  margin-bottom: 20px;
}

.google-box h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  color: var(--color-font);
}

.google-box .rating {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-title);
  margin: 10px 0;
}

.google-box .reviews-count {
  font-size: 16px;
  color: #666;
}

.slider-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  background: var(--color-one);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  box-sizing: border-box;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-header i {
  font-size: 50px;
  color: var(--color-primary);
  margin-right: 15px;
}

.user-info h4 {
  margin: 0;
  font-size: 18px;
  color: var(--color-font);
}

.user-info span {
  font-size: 14px;
  color: #888;
}

.stars {
  color: var(--color-title);
  margin: 15px 0;
}

.stars i {
  font-size: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-font);
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  padding: 0 15px;
  box-sizing: border-box;
}

.slider-btn {
  background: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(40,60,148,0.4);
  pointer-events: all;
  transition: all 0.3s;
  opacity: 0.9;
}

.slider-btn:hover {
  background: var(--color-primary-light);
  transform: scale(1.15);
  opacity: 1;
}

.slider-btn i {
  font-size: 18px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/******************************

COOKIES

*******************************/

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 520px;
    width: 90%;
    background: var(--color-two);
    color: var(--color-font);
    padding: 20px 25px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 15px;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.35);
    line-height: 1.5em;
    text-align: center;
}

.cookie-banner-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-font);
    margin-bottom: 10px;
}

.cookie-banner-text {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.cookie-banner a {
    color: var(--color-font);
    text-decoration: underline;
}

.cookie-toggle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 8px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}
.cookie-switch input { display:none; }
.cookie-slider {
    position: absolute;
    cursor: pointer;
    top:0; left:0; right:0; bottom:0;
    background-color:#ccc;
    transition:.4s;
    border-radius: 34px;
}
.cookie-slider:before {
    position: absolute;
    content:"";
    height:22px; width:22px;
    left:3px; bottom:3px;
    background-color:white;
    transition:.4s;
    border-radius:50%;
}
.cookie-switch input:checked + .cookie-slider {
    background-color: var(--color-title);
}
.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(32px);
}

.cookie-banner button {
    margin-top: 12px;
    padding: 10px 18px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:14px;
    transition:all 0.2s ease-in-out;
    margin-right: 8px;
    background: var(--color-primary-dark);
    color: #fff;
    min-width: 120px;
}
.cookie-banner button:hover {
    background: var(--color-primary);
    transform:translateY(-1px);
}

#cookie-accept-all { background: var(--color-primary); }
#cookie-reject-all { background: #e30000; }
#cookie-reject-all:hover { background: #c20000; }
#cookie-settings { background: var(--color-primary-dark); }

#cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--color-primary-dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    z-index: 9998;
    transition: all 0.2s ease-in-out;
    display: none;
}
#cookie-settings-btn:hover {
    background: var(--color-title);
}

/******************************

RESPONSIVE

*******************************/

@media only screen and (max-width: 1080px) {

  .top-header {
    gap: 20px;
    font-size: 11px;
    height: 38px;
  }

  .top-header .header-item {
    padding: 0 8px;
  }

  .top-header .icon-circle,
  .top-header .whatsapp-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .top-header.scrolled {
    gap: 15px;
    height: 30px;
  }

  .top-header.scrolled .header-item {
    padding: 0 6px;
  }

  .top-header.scrolled .icon-circle,
  .top-header.scrolled .whatsapp-icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .container {
    width: 750px;
  }
  
  .container .box {
    margin: 34px 0px 0px 100px;
  }
  
  .blog-box {
    width: 750px;
  }
  
  .container .card {
    width: 320px;
  }

  .container-b {
    width: 750px;
  }
  
  .container-b .box-b {
    width: 320px;
  }
  
  .gallery-container {
    width: 720px;
  }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }
    .google-box {
        position: static;
        flex: none;
        width: 100%;
    }
    .slider-wrapper {
        width: 100%;
    }
}

@media (max-width: 992px) {
  .page-header {
    height: 480px;
  }
  .page-header h1 {
    font-size: 42px;
    padding: 14px 30px;
  }
}

@media only screen and (max-width: 770px) {

  .top-header {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    height: 36px;
    align-items: center;
  }

  .top-header .header-item {
    padding: 0 6px;
    gap: 0;
    justify-content: center;
  }

  .top-header .address-text,
  .top-header .email-text {
    display: none;
  }

  .top-header.scrolled {
    gap: 15px;
    height: 28px;
  }

  .logo {
    width: 80px;
  }

  .navbar.scrolled .logo {
    width: 60px;
  }

  .top-header.scrolled .header-item {
    padding: 0 4px;
  }

  .top-header.scrolled .icon-circle,
  .top-header.scrolled .whatsapp-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .navbar {
    top: 36px !important;
  }

  .navbar.scrolled {
    top: 28px !important;
  }

  .top-header {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    height: 36px;
    align-items: center;
  }

  .top-header .header-item {
    padding: 0 6px;
    gap: 0;
    justify-content: center;
  }

  .top-header .address-text,
  .top-header .email-text {
    display: none;
  }

  .top-header.scrolled {
    gap: 15px;
    height: 28px;
  }

  .top-header.scrolled .header-item {
    padding: 0 4px;
  }

  .top-header.scrolled .icon-circle,
  .top-header.scrolled .whatsapp-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .navbar {
    top: 36px !important;
  }

  .navbar.scrolled {
    top: 28px !important;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-list {
    margin: 0px 0px 0px 0px;
    display: none;
    flex-direction: column;
    width: 100vw;
    height: calc(100vh - 36px);
    position: fixed;
    top: 36px;
    left: 0;
    background: var(--color-default);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 40px 20px;
    gap: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow-y: auto;
    z-index: 1002;
  }

  .navbar.scrolled .nav-list {
    top: 70px !important;
    height: calc(100vh - 28px) !important;
  }

  .nav-list.active {
    display: flex;
    transform: translateX(0);
  }

  .nav-list li {
    margin: 0;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 25px 0;
  }

  .nav-list li.dropdown-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 25px 0;
  }

  .nav-list a {
    padding: 0;
    font-size: 20px;
    color: var(--color-font);
    transition: color 0.3s ease;
    flex: 1;
    text-align: left;
  }

  .nav-list a:hover {
    color: var(--color-primary);
  }

  .custom-submenu {
    position: static;
    top: auto !important;
    left: auto;
    width: 100%;
    background: linear-gradient(135deg, rgba(40,60,148,0.05) 0%, rgba(250,169,48,0.05) 100%);
    border-radius: 15px;
    margin-top: 0;
    margin-bottom: 25px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 25px 15px;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: none;
    animation: slideDownCenter 0.3s ease-out;
    text-align: center;
  }
  
  .navbar.scrolled .custom-submenu {
	margin: 0;
  }

  @keyframes slideDownCenter {
    from {
      opacity: 0;
      transform: translateY(-10px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .custom-submenu li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 0;
    padding: 22px 0;
    border-radius: 10px;
    width: 100%;
  }

  .custom-submenu li a {
    padding: 0;
    font-size: 18px;
    color: var(--color-font);
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: all 0.2s ease;
    width: 100%;
  }

  .custom-submenu li a .icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .custom-submenu li a:hover,
  .custom-submenu li a:active {
    background: linear-gradient(135deg, rgba(40,60,148,0.1) 0%, rgba(250,169,48,0.1) 100%);
    color: var(--color-primary);
    transform: scale(1.02);
    padding-left: 0;/
    border-radius: 10px;
  }
 
 .top-header .header-item {
    max-width: none;
    width: auto;
  }

  .navbar {
    top: 36px !important;
  }
 
 .navbar.scrolled {
    top: 28px !important;
  }

  .toggle-submenu {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin: 0;
    flex-shrink: 0;
  }

    .nav-list {
      padding: 30px 15px;
    }

    .nav-list li {
      padding: 22px 0;
    }

    .custom-submenu {
      padding: 25px 10px;
      margin-bottom: 20px;
    }

    .custom-submenu li {
      padding: 20px 0;
    }

    .custom-submenu li a {
      font-size: 16px;
      gap: 15px;
    }

    .custom-submenu li a .icon {
      width: 24px;
      height: 24px;
      font-size: 11px;
    }
	
	.hero-section {
    grid-template-columns: 1fr;
    padding: 40px 16px;
    gap: 32px;
    min-height: auto;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .sub-options {
    margin-left: 0;
    margin-top: 8px;
  }

  .service-item {
    padding: 16px;
  }

  .section h1,
  .section h2 {
    font-size: 28px;
  }

  .section h5,
  .section h3 {
    font-size: 16px;
  }

  .container .box h3 {
    font-size: 16px;
  }

  .container {
    width: 100%;
  }

  .container .box {
    width: 360px;
    margin: 20px auto;
  }

  .container .box .box-grid div {
    width: 100%;
  }

  .blog-box {
    width: 100%;
	padding: 0;
	margin: 20px auto;
  }
  
  .blog-box .blog-content {
	margin: 30px 15px 30px 15px;
  }
  
  .container .card {
    width: 360px;
    margin: 20px auto;
  }
  
  .section-qta {
    padding: 80px 0;
  }

  .section-qta h3 {
    font-size: 1.3rem;
  }

  .services-checkboxes {
    max-height: none;
    padding: 12px;
  }

  .service-item {
    min-height: auto;
    padding: 10px;
    margin-bottom: 10px;
  }

  .service-item input[type="checkbox"] {
    margin: 0 8px 4px 0;
    display: block;
  }

  .service-item label {
    display: block;
    width: 100%;
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .service-item .sub-options {
    margin: 8px 0 0 0;
    padding: 12px;
  }

  .service-item .sub-options.show {
    margin-left: 0;
  }

  .sub-group {
    margin-bottom: 12px;
  }

  .sub-input {
    padding: 10px;
    font-size: 16px;
  }

  .qta-buttons {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .section-qta p {
    padding: 0 5%;
  }

  .container .box h1 {
    font-size: 20px;
  }

  .container .box p,
  .container-b .box-b p {
    font-size: 16px;
  }

  .form-control {
    width: 94%;
    font-size: 16px;
  }

  .container-b .box-b h6 {
    margin: 6px 0px 6px 0px;
    font-size: 16px;
  } 

  .submit {
    width: 110px;
    font-size: 16px ;
  }

  .container-b .box-b h5 {
    font-size: 16px;
  }

  .container-b {
    width: 98%;
  }

  .container-b .box-b {
    width: 360px;
    margin: 20px auto;
    font-size: 16px;
  }
  
  .container-b .f-line {
    width: 97%;
    height: 1px;
	display: none;
  }

  .gallery-container {
    width: 100%;
    padding: 2% 0px 0px 0px;
  }

  .gallery-container .gallery-item {
    width: 47%;
    margin: 0px 0px 2% 2%;
  }

  .lightbox-content {
    width: 84%;
    margin: 100px auto;
  }

  .gallery-container .gallery-item a.info {
    top: 140px;
    right: 0px;
  }
  
  .lightbox-content img {
    width: 100%;
  }

  .lightbox-next {
    margin: 0;
    right: 0;
  }

  .lightbox-prev {
    margin: 0;
    left: 0;
  }

  #call-icons {
    bottom: 120px;
  }
  
  .info-plugin {
	padding: 6px;
	font-size: 12px;
  }
  
  .telefon-icon {
	bottom: 90px;
  }

  #cookie-options label {
    display: block;
  }

  .copyright {
    font-size: 16px;
  }
  
  .container .card .content .imgBlog {
    height: 200px;
  }
  
  .container .card .content {
    padding: 16px 12px;
  }
  
  .container .card .content .contentBx h2 {
    font-size: 1.35rem;
  }
  
  .container .card .content .contentBx h3 {
    font-size: 1.15rem;
  }

    .google-box {
        padding: 25px;
    }
    .google-box i {
        font-size: 60px;
    }
    .testimonial-card {
        padding: 25px;
    }
    .slider-controls {
        padding: 0 10px;
    }
    .slider-btn {
        width: 38px;
        height: 38px;
    }
    .slider-btn i {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 36px;
    padding: 12px 24px;
  }
  .breadcrumb {
    padding: 8px 20px;
    font-size: 14px;
    flex-wrap: wrap;
    justify-content: center;
    bottom: 20px;
  }

    .cookie-banner { font-size:14px; padding:15px; }
    .cookie-banner button { width:100%; margin:6px 0; }
    .cookie-toggle-container { flex-direction: column; text-align: left; }
}

@media only screen and (max-width: 380px) {
  .container .box {
   width: 310px;
  }

  .container .box img {
    width: 290px;
  }

  .gallery-container .gallery-item {
    width: 310px;
  }

    .slider-controls {
        padding: 0 8px;
    }
    .slider-btn {
        width: 36px;
        height: 36px;
    }
}