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

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;

  --color-default: #ffffff;
  --color-header: #000000;
  --color-primary: #1e8c07;
  --color-primary-light: #22A308;
  --color-primary-dark: #146105;
  --color-section-dark: #000000;
  --color-secondary: #ffffff;
  --color-background: #ffffff;
  --color-font: #000000;
  --color-title: #1e8c07;
  --color-one: #ffffff;
  --color-two: #f2f2f2;
}

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-header);
  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-default);
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 0 10px;
  background: linear-gradient(135deg, rgba(30,140,7,0.4) 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-default);
  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(250,169,48,0.1) 0%, rgba(30,140,7,0.4) 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: var(--color-header);
  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;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

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

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

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

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

.phone-btn {
  background: linear-gradient(135deg, rgba(30,140,7,0.4) 0%, rgba(250,169,48,0.1) 100%);
  color: var(--color-default);
  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);
}

    .overlay {
      position: fixed;
      top: 0;
	  left: 0;
	  width: 100%;
	  height: 100vh;
      background: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .popup {
      position: relative;
	  background: var(--color-header);
      width: 90%;
      max-width: 420px;
      border-radius: 12px;
      padding: 2.5rem 1.8rem;
      box-shadow: 0 10px 40px rgba(0,0,0,0.4);
	  border: 1px solid var(--color-primary-dark);
      text-align: center;
    }

    .overlay.active .popup {
      transform: translateY(-15vh); /* ≈ 15% ekrana naviše */
    }

    .close-btn {
      position: absolute;
      top: 12px;
      right: 16px;
      font-size: 28px;
      cursor: pointer;
      color: #888;
      line-height: 1;
    }

    .close-btn:hover {
      color: #333;
    }

    .popup h2 {
      margin-bottom: 1.8rem;
      font-size: 1.5rem;
      color: var(--color-two);
    }

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

.language-selector {
  position: relative;
  display: inline-block;
  padding: 0;
  color: var(--color-primary-light);
}

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

.language-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  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-default);
  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);
  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;
      min-height: 92vh;
      display: flex;
      align-items: center;
	  margin: 90px 0px 0px 0px;
      padding: 80px 5% 80px;
      /*background: linear-gradient(155deg, 
        var(--color-one) 0%, 
        var(--color-two) 40%, 
        rgba(30, 140, 7, 0.045) 75%, 
        rgba(30, 140, 7, 0.02) 100%
      );*/
	    background-image: url('https://autotransport-swiss.ch/img/auto-transport-schweiz-6.jpg');
        background-size: cover;           /* ili contain, ili 100% 100% - po potrebi */
		background-position: center;      /* centriraj sliku */
		background-repeat: no-repeat;
		overflow: hidden;
    }

    .hero__bg-pattern {
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='960' height='720' viewBox='0 0 960 720' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M480 120 L460 220 L500 280 L470 380 L530 440 L500 540 L560 600 L530 680' stroke='%231e8c07' stroke-width='1.8' opacity='0.055' stroke-linecap='round'/%3E%3Cpath d='M240 240 L260 340 L220 400 L250 500 L190 560 L220 660' stroke='%231e8c07' stroke-width='1.4' opacity='0.045' stroke-linecap='round'/%3E%3Cpath d='M720 180 L740 280 L700 340 L730 440 L680 500 L710 600' stroke='%231e8c07' stroke-width='1.6' opacity='0.05' stroke-linecap='round'/%3E%3C/svg%3E") center/cover;
      opacity: 0.45;
      pointer-events: none;
      z-index: 0;
    }

    .hero__container {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .hero__content-left {
      padding-right: 40px;
    }

    .hero__title {
      font-size: 3.4rem;
      font-weight: 800;
      letter-spacing: -0.8px;
      color: var(--color-title);
      margin-bottom: 1.2rem;
      line-height: 1.08;
    }

    .hero__subtitle {
      font-size: 1.35rem;
      color: var(--color-default);
      margin-bottom: 2.6rem;
      max-width: 540px;
      font-weight: 400;
    }

    .hero__trust-list {
      list-style: none;
      margin-bottom: 3rem;
    }

    .hero__trust-item {
      font-size: 1.22rem;
      margin-bottom: 1.2rem;
      position: relative;
      padding-left: 44px;
      font-weight: 500;
	  color: var(--color-default);
    }

    .hero__trust-icon {
      position: absolute;
	  width: 40px;
      height: 40px;
  	  border-radius: 50%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
      left: 0;
      top: -7px;
      color: var(--color-primary);
	  background: linear-gradient(135deg, rgba(250,169,48,0.1) 0%, rgba(30,140,7,0.4) 100%);
      font-size: 1.7rem;
    }

    .hero__trust-icon:hover {
	  background: linear-gradient(135deg, rgba(30,140,7,0.4) 0%, rgba(250,169,48,0.1) 100%);
    }

    .hero__cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin: 3rem 0 3rem 0;
    }

    .hero__btn {
      font-size: 1.2rem;
      font-weight: 600;
      padding: 16px 40px;
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
      cursor: pointer;
    }

    .hero__btn--primary {
      background: var(--color-primary);
      color: white;
      box-shadow: 0 6px 20px rgba(30,140,7,0.18);
    }

    .hero__btn--primary:hover {
      background: var(--color-primary-dark);
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 16px 32px rgba(30,140,7,0.28);
    }

    .hero__btn--secondary {
      background: transparent;
      color: var(--color-primary);
      border: 2px solid var(--color-primary);
    }

    .hero__btn--secondary:hover {
      background: var(--color-primary);
      color: white;
      transform: translateY(-4px) scale(1.02);
    }

    .hero__badges {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      font-size: 1.05rem;
      color: #696969;
    }

    .hero__badge-icon {
	  width: 60px;
      height: 60px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
      color: var(--color-primary);
	  background: linear-gradient(135deg, rgba(250,169,48,0.1) 0%, rgba(30,140,7,0.4) 100%);
      font-size: 1.7rem;
      margin-bottom: 8px;
	  border-radius: 8px;
    }

    .hero__badge-icon:hover {
	  background: linear-gradient(135deg, rgba(30,140,7,0.4) 0%, rgba(250,169,48,0.1) 100%);
    }

    .hero__calculator-card {
      background: linear-gradient(135deg, var(--color-header) 0%, var(--color-primary-dark) 100%);
      border-radius: 20px;
      box-shadow: 0 24px 70px rgba(0,0,0,0.09);
      padding: 48px 44px;
      border: 2px solid var(--color-primary-dark);
      backdrop-filter: blur(14px);
      transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero__calculator-card:hover {
      background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-header) 100%);
	  border: 2px solid var(--color-primary-light);
	  transform: translateY(-10px);
      box-shadow: 0 32px 90px rgba(0,0,0,0.12);
    }

    .hero__form-title {
      font-size: 1.95rem;
      font-weight: 800;
      color: var(--color-title);
      margin-bottom: 2.2rem;
      letter-spacing: -0.4px;
    }

    .hero__form-group {
      margin-bottom: 2rem;
    }

    .hero__label {
      display: block;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.7rem;
      color: var(--color-two);
    }

    .hero__select {
      width: 100%;
      padding: 16px 20px;
      border: 1px solid #d4d4d4;
      border-radius: 12px;
      font-size: 1.12rem;
      background: white;
      transition: all 0.3s;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%231e8c07' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 20px center;
      background-size: 14px;
    }

    .hero__select:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 5px rgba(30,140,7,0.14);
      outline: none;
    }

    .hero__submit-btn {
      width: 100%;
      background: var(--color-primary);
      color: white;
      font-size: 1.25rem;
      font-weight: 700;
      padding: 20px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
      margin-top: 14px;
      box-shadow: 0 8px 24px rgba(30,140,7,0.2);
    }

    .hero__submit-btn:hover {
      background: var(--color-primary-dark);
      transform: translateY(-5px) scale(1.015);
      box-shadow: 0 18px 40px rgba(30,140,7,0.32);
    }

    .hero__notice {
      margin-top: 1.8rem;
      font-size: 1rem;
      color: #787878;
      text-align: center;
      line-height: 1.6;
    }

    .hero__price-result {
      margin-top: 32px;
      padding: 28px;
      border-radius: 14px;
      background: rgba(248,255,248,0.92);
      border: 1px solid rgba(30,140,7,0.16);
      text-align: center;
      display: none;
      backdrop-filter: blur(8px);
      transition: all 0.4s ease;
    }

    .hero__price-result--visible {
      display: block;
      opacity: 1;
    }

    .hero__price-big {
      font-size: 3.4rem;
      font-weight: 900;
      color: var(--color-primary);
      margin: 6px 0;
      letter-spacing: -1.5px;
      line-height: 1;
    }

    .hero__loader {
      border: 5px solid #f0f0f0;
      border-top: 5px solid var(--color-primary);
      border-radius: 50%;
      width: 36px;
      height: 36px;
      animation: spin 0.85s linear infinite;
      margin: 28px auto;
      display: none;
    }

    @keyframes spin { to { transform: rotate(360deg); } }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .hero__container { grid-template-columns: 1fr; gap: 70px; }
      .hero__content-left { padding-right: 0; text-align: left; }
      .hero__title { font-size: 3rem; }
    }

    @media (max-width: 580px) {
    .hero {
	    background-image: url('https://autotransport-swiss.ch/img/auto-transport-schweiz-8.jpg');
        background-size: cover;           /* ili contain, ili 100% 100% - po potrebi */
		background-position: center;      /* centriraj sliku */
		background-repeat: no-repeat;
		overflow: hidden;
    }
	  .hero__title { font-size: 2.5rem; }
      .hero__form-title { font-size: 1.7rem; }
      .hero__btn, .hero__submit-btn { padding: 15px 32px; font-size: 1.12rem; }
      .hero__price-big { font-size: 2.8rem; }
    }

  .hero__place-name {
    font-size: 0.88em;
    color: #555;
    margin-left: 10px;
    font-style: italic;
    display: inline-block;
    vertical-align: middle;
  }

    .hero__input {
      width: 100%;
      padding: 16px 20px;
      border: 1px solid #d4d4d4;
      border-radius: 12px;
      font-size: 1.12rem;
      background: white;
      transition: all 0.3s;
      appearance: none;
    }

    .hero__input:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 5px rgba(30,140,7,0.14);
      outline: none;
    }

  /* Loader – možeš stilizovati po želji */
  .hero__loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: spin 1s linear infinite;
    margin: 15px auto;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


#route-map-container {
  position: relative;
  background: rgba(0,0,0,0.1);
  box-shadow: 0 24px 70px rgba(0,0,0,0.09);
}

#close-map-btn:hover {
  background: #f0f0f0;
}
#route-map-wrapper,
#route-map {
  height: 100% !important;
  min-height: 500px !important;
  width: 100% !important;
  border: 2px solid var(--color-primary-dark);
}

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

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-section-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: 120px 24px;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
}

.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: 38px;
  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-two);
}

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

.qta-btn {
  display: grid;
  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-one);
  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-title);
  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: 38px;
  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: 50px auto;
  gap: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 34px;
}

.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: 50px 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;
}

.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;
  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 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;
}

.photo-preview img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.photo-preview img:hover {
  transform: scale(1.05);
}

.container .box ul,
.container .card ul,
.blog .post ul {
  padding: 0px 0px 0px 34px;
}

.container .box ul li,
.container .card ul li,
.blog .post li {
  list-style: none;
  position: relative;
  padding: 12px 0px 3px 24px;
}

.container .box ul li::before,
.container .card ul li::before,
.blog .post li::before {
  content: "\f00c";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 12px;
  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: var(--color-one);
  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(
    to bottom,
    color-mix(in srgb, var(--color-one) 92%, var(--color-primary) 8%),
    var(--color-one)
  );
}

.container .card.special {
  border: 2px solid var(--color-primary);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, var(--color-header) 0%, var(--color-primary-dark) 100%);
}

.container .card.special:hover {
  border: 2px solid var(--color-primary-dark);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-header) 100%);
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

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

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

.section .card.special .content .contentBx p {
  color: var(--color-two);
}

.section .card.special:hover .content .contentBx p {
  color: var(--color-default);
}

.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 {
  position: relative;
  padding: 20px 14px 20px 14px !important;
}

.container .card .content .imgBx {
  position: relative;
  width: 100%;
  height: 220px; /* prilagodi po potrebi */
  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 .imgBx::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 .imgBx 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 .imgBx {
  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 .imgBx::before {
  opacity: 1;
  border-color: #6366f1;
}

.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 0px 5px 24px;
  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-primary-light);
  border-top-right-radius: 28px;
  border-bottom-left-radius: 28px;
}

.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 {
  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 p {
  margin: 0 0 1.5rem 0;
  color: #64748b;
  line-height: 1.6;
}

.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 #283c94;
  border-radius: 8px;
  color: #3049b4;
  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: #fff;
  border-color: #3049b4;
  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,
.blog .post 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-font);
  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,
.blog .post a span {
  position: relative;
  z-index: 2;
  color: inherit;
}

.container .card a::before,
.container .box a::before,
.blog .post 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,
.blog .post a:hover::before {
  left: 0;
}

.container .card a:hover,
.container .box a:hover,
.blog .post a:hover {
  color: var(--color-one);
  border-color: var(--color-primary);
  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,
.blog .post i {
  margin: 0px 8px 0px 0px;
  display: inline-block;
  color: var(--color-two);
  background-color: var(--color-primary-dark);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  border-radius: 100px;
}

.container-b .box-b i {
  margin: 5px 5px 5px 0px;
  display: inline-block;
  color: var(--color-two);
  background-color: var(--color-primary-dark);
  width: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 100px;
}

.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

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

.container .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;
}

.container .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%);
}

.container .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);
}

.container .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;
}

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

.container .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;
}

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

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

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

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

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

.container .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: 280px;
  transition: 0.5s ease-in-out;
}

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

.gallery-container .gallery-item img {
  width: 100%;
  height: 100%;
}

.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-color: #4F4F4F;
}

.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: 400px;
  margin: 90px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-one);
  overflow: hidden;
  background-image: url('https://autotransport-swiss.ch/img/auto-transport-schweiz-9.jpg');
  background-size: cover;           /* ili contain, ili 100% 100% - po potrebi */
  background-position: center;      /* centriraj sliku */
  background-repeat: no-repeat;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  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);
  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-primary-dark);
  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;
}

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

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

.breadcrumb span {
  color: var(--color-primary-light);
  font-weight: bold;
}

.breadcrumb i {
  color: var(--color-primary-light);
  font-size: 16px;
}

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

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

FORMS

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

.form-group {
  margin-bottom: 1.4rem;
  position: relative;
}

.contactForm h3 {
  font-size: 1rem;
  text-align: left;
  color: var(--color-primary-light);
}

.form-container,
.contactForm {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06),
              0 4px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.form-container:hover,
.contactForm:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08),
              0 6px 16px rgba(0, 0, 0, 0.05);
}

.form-group select {
  width: 100%;
  padding: 0.95rem 2.5rem 0.95rem 1rem;
  font-size: 1.03rem;
  font-family: var(--font-default);
  color: #1f2937;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231e8c07' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 1rem center;
  background-size: 12px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.form-group select:hover {
  border-color: #9ca3af;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  background-position: right 0.9rem center;
}

.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 
    0 0 0 4px rgba(var(--color-primary-rgb), 0.12),
    0 4px 16px rgba(var(--color-primary-rgb), 0.08);
  background-position: right 0.9rem center;
}

.form-group select option {
  padding: 0.8rem;
  font-size: 1rem;
  background: #ffffff;
  color: #1f2937;
}

.form-group select option[value=""] {
  color: #9ca3af;
  font-style: italic;
}

.form-group select:focus + label,
.form-group select:not([value=""]) + label {
  font-size: 0.82rem;
  color: var(--color-primary);
  transform: translateY(-1.8rem) scale(0.92);
  font-weight: 700;
}

.form-group select:disabled {
  background: #f3f4f6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 1rem center;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 0.4rem;
  transition: all 0.25s ease;
  transform-origin: left top;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-search input:focus + label,
.form-search input:not(:placeholder-shown) + label {
  font-size: 0.82rem;
  color: var(--color-primary);
  transform: translateY(-1.8rem) scale(0.92);
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-search input {
  width: 100%;
  padding: 0.95rem 1rem;
  font-size: 1.03rem;
  font-family: var(--font-default);
  color: #1f2937;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.form-group input:hover,
.form-group textarea:hover,
.form-search input:hover {
  border-color: #9ca3af;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.form-group input:focus,
.form-group textarea:focus,
.form-search input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 
    0 0 0 4px rgba(var(--color-primary-rgb), 0.12),
    0 4px 16px rgba(var(--color-primary-rgb), 0.08);
  background: #fefefe;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.5;
}

.contactForm button,
.form-submit-btn,
.form-search button {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-top: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-default);
  color: white;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(30, 140, 7, 0.22);
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.contactForm button::before,
.form-submit-btn::before,
.form-search button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transition: left 0.6s;
}

.contactForm button:hover::before,
.form-submit-btn:hover::before,
.form-search button:hover::before {
  left: 150%;
}

.contactForm button:hover,
.form-submit-btn:hover,
.form-search button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30, 140, 7, 0.35);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.error {
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.45rem;
  padding-left: 0.3rem;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
  display: block;
}

.form-group.has-error .error {
  opacity: 1;
  transform: translateY(0);
}

.form-group input:disabled,
.form-group textarea:disabled,
.contactForm button:disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 768px) {
  .form-container,
  .contactForm {
    max-width: 100%;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 640px) {
  .form-group input,
  .form-group textarea {
    padding: 0.9rem 0.95rem;
    font-size: 1rem;
  }
  
  .contactForm button {
    padding: 0.95rem;
    font-size: 1.05rem;
  }
}

.form-search {
  max-width: 520px;
  margin: 2rem auto;
  padding: 1.2rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-family: var(--font-default);
}

.form-search form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.form-search label {
  font-weight: 600;
  color: #4b5563;
  font-size: 0.98rem;
  white-space: nowrap;
}

.form-search select {
  flex: 1;
  min-width: 180px;
  padding: 0.85rem 2.4rem 0.85rem 1rem;
  font-size: 1rem;
  font-family: var(--font-default);
  color: #1f2937;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231e8c07' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 1rem center;
  background-size: 12px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.form-search select:hover {
  border-color: #9ca3af;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  background-position: right 0.9rem center;
}

.form-search select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 
    0 0 0 4px rgba(var(--color-primary-rgb), 0.12),
    0 4px 16px rgba(var(--color-primary-rgb), 0.08);
  background-position: right 0.9rem center;
}

.form-search a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.form-search a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Responsive – na malim ekranima sve u koloni */
@media (max-width: 640px) {
  .form-search {
    padding: 1rem 1.2rem;
    max-width: 100%;
  }

  .form-search form {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .form-search select,
  .form-search button {
    width: 100%;
  }

  .form-search button {
    padding: 0.9rem;
  }
}

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

TABLE

*******************************/
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  font-family: var(--font-default), sans-serif;
  font-size: 0.97rem;
  table-layout: auto;
}

thead th {
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  text-align: left;
  padding: 14px 18px;
  text-transform: uppercase;
  font-size: 0.93rem;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

thead th:first-child {
  border-top-left-radius: 10px;
}

thead th:last-child {
  border-top-right-radius: 10px;
}

tbody tr {
  transition: background-color 0.18s ease;
}

tbody tr:nth-child(even) {
  background: #f9fafb;
}

tbody tr:hover {
  background: #f1f5f9;
}

tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid #e5e7eb;
  color: #1f2937;
  vertical-align: middle;
  white-space: nowrap;          /* sprečava prelamanje teksta u ćelijama */
}

tbody td a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

tbody td a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Akcije – dugmići */
tbody td:last-child {
  white-space: nowrap;
  text-align: center;
  padding: 12px 10px;
}

tbody td:last-child a,
tbody td:last-child button {
  display: inline-block;
  padding: 7px 13px;
  margin: 3px 5px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  min-width: 80px;
}

a[href*="edit"],
a[href*="izmeni"] {
  background: #dbeafe;
  color: #1e40af;
}

a[href*="delete"],
a[href*="obriši"] {
  background: #fee2e2;
  color: #b91c1c;
}

button[name="assign_carrier"],
button[name="change_status"] {
  background: var(--color-primary);
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* ────────────────────────────────────────────────
   RESPONSIVE – horizontalni skrol + indikator
───────────────────────────────────────────────── */

.table-wrapper {
  position: relative;
  padding: 80px 12px 80px 12px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* scrollbar stil (lepši i moderniji) */
.table-wrapper::-webkit-scrollbar {
  height: 10px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* Indikator skrolovanja – strelica levo/desno + tekst */
.table-scroll-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
  color: #6b7280;
  background: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  pointer-events: none;
  white-space: nowrap;
  z-index: 5;
  display: none;
}

@media (max-width: 1024px) {
  .table-scroll-indicator {
    display: block;
  }
}

/* Dodatni nagoveštaj na veoma uskim ekranima */
@media (max-width: 480px) {
  .table-scroll-indicator {
    font-size: 0.85rem;
    padding: 5px 12px;
  }
}

/* Ako želiš da se tabela ne sužava previše na desktopu */
@media (min-width: 1200px) {
  table {
    min-width: 1100px;   /* možeš promeniti po potrebi */
  }
}

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

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-primary-dark, #1b2e7e);
    color: var(--color-default, #fff);
    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-title, #faa930);
    margin-bottom: 10px;
}

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

.cookie-banner a {
    color: var(--color-title, #faa930);
    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, #faa930);
}
.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, #283c94);
    color: #fff;
    min-width: 120px;
}
.cookie-banner button:hover {
    background: var(--color-primary-light, #3049b4);
    transform:translateY(-1px);
}

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

#cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--color-primary, #283c94);
    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, #faa930);
}

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

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;
  }
  
  .gallery-container .gallery-item {
    width: 330px;
  }
    .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 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 {
    display: none;
	width: 150px;
  }

  .navbar.scrolled .logo {
    display: none;
	width: 130px;
  }

  .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: rgba(0,0,0,0.9);
    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-default);
    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;
  }
  
  .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%;
    height: 200px;
    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;
    }
}