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

FONTS / COLORS

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

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

:root {
  --color-default: #fff;
  --color-header: #fff;
  --color-primary: #283c94;
  --color-primary-light: #3049b4;
  --color-primary-dark: #1b2e7e;
  --color-secondary: #fff;
  --color-background: #fff;
  --color-font: #222;
  --color-title: #faa930;
  --color-one: #fff;
  --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: linear-gradient(135deg, #f8f9ff 0%, #f0f2f8 100%);
  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-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(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: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  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);
}

.navbar.scrolled {
  padding: 10px 20px;
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  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: 70px;
}

.logo-flip-container {
  display: inline-block;
  width: 100px;
  height: 70px;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-flip-container {
  width: 70px;
  height: 70px;
}

.logo-flip-container a {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-flipper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-style: preserve-3d;
}

.logo-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.logo-face img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-front {
  z-index: 2;
}

.logo-back {
  transform: rotateY(180deg);
}

.flip-active .logo-flipper {
  transform: rotateY(180deg);
}

.logo-flip-container:hover .logo-flipper {
  animation-play-state: paused;
}

.phone-btn {
  background: var(--color-primary);
  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);
}

.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: #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-font);
  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-section {
  margin: 120px auto;
  padding: 60px 20px;
  max-width: 1200px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

.hero-subtitle {
  margin-bottom: 32px;
  max-width: 500px;
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--color-font);
}

.benefits {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.preise-box {
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  border-left: 4px solid var(--color-title);
  background-color: var(--color-one);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.preise-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-preise {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-font);
}

.preise {
  font-size: 0.875rem;
  color: var(--color-font);
}

.benefit-box {
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
  background-color: var(--color-one);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-primary);
}

.benefit-title {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-font);
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--color-font);
}

.hero-form {
  width: 100%;
  max-width: 500px;
  padding: clamp(24px, 5vw, 40px);
  border-radius: 12px;
  background-color: var(--color-one);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
  margin-bottom: 24px;
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-title);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  margin-bottom: 8px;
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-font);
}

.form-input,
.sub-input {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid var(--color-primary-dark);
  background-color: var(--color-one);
  transition: var(--transition);
}

.form-input:focus,
.sub-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.services-section {
  margin-bottom: 20px;
}

.services-checkboxes {
  max-height: 250px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--color-primary-dark);
  background-color: var(--color-two);
}

.service-item {
  min-height: 44px;
  padding: 12px;
  margin-bottom: 12px;
  display: block;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

.service-item:hover,
.service-item.expanded {
  background-color: var(--color-title);
}

.service-item.expanded {
  border-color: var(--color-title);
}

.service-item input[type="checkbox"] {
  margin: 0 8px 0 0;
  transform: scale(1.2);
  accent-color: var(--color-one);
  vertical-align: middle;
}

.service-item label {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--color-font) !important;
  cursor: pointer;
  user-select: none;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  vertical-align: middle;
  width: calc(100% - 40px);
}

.service-item .sub-options {
  display: none;
  margin: 12px 0 0 0;
  padding: 16px;
  border-radius: 8px;
  border-left: 3px solid var(--color-title);
  background-color: var(--color-one);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-item .sub-options.show {
  display: block;
  max-height: 500px;
  margin-left: 24px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.sub-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.sub-group:last-child {
  margin-bottom: 0;
}

.sub-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9em;
  color: var(--color-font);
  font-weight: 500;
}

.sub-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--color-primary-dark);
  border-radius: 4px;
  background-color: white;
  font-size: 14px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.sub-input:focus {
  border-color: var(--color-one);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.sub-input:invalid[required] {
  border-color: red;
}

.form-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}

.submit-button,
.share-button,
.email-button,
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 25px;
  background: var(--color-primary);
  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);
}

.submit-button:hover,
.share-button:hover,
.email-button:hover,
.cta-button:hover {
  background: var(--color-title);
  color: var(--color-one);
  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);
}

#shareOptions {
  display: none;
  margin-top: 24px;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #c3e6cb;
  background-color: #d4edda;
}

#shareOptions.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 200px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

.qta-btn i {
  font-size: 1.2rem;
  width: 20px;
}

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

.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: 0px 0px 20px 0px;
  background-color: var(--color-two);
  border: 2px solid var(--color-title);
  border-radius: 16px;
}

.card:hover.feature-box {
  border: none;
}

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

.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: 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: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 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 14px 20px 14px;
}

.container .card .content .imgBx {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(0,0,0,0.25);
}

.container .card .content .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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-color: var(--color-primary-dark);
  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 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

a.bez {
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  font-size: 18px !important;
  text-transform: none !important;
  color: var(--color-primary-dark) !important;
  border: none !important;
  border-radius: 0 !important;
  display: inline !important;
  vertical-align: middle;
}

a.bez:hover {
  color: var(--color-title) !important;
  background-color: transparent !important;
  border-color: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.container .card a {
  position: relative;
  padding: 10px 25px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
}

.container .card a span {
  position: relative;
  z-index: 1;
  color: var(--color-one);
  font-size: 14px;   
}

.container .box a {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0.5rem auto;
  padding: 6px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  color: var(--color-primary-light);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  cursor: pointer;
}

.container .box a:hover {
  color: var(--color-background);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

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

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

.zoom-effect {
  display: inline-block;
  overflow: hidden;
}

.zoom-effect img {
  transition: filter 0.5s ease;
}

.zoom-effect:hover img {
  filter: grayscale(100%);
}

.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 .fa-angle-double-right,
.container .fa-question-circle-o {
  cursor: pointer;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: var(--color-background);
  color: var(--color-primary);
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  margin: 0px 0px 0px 10px;
}

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

.container-b .box-b p {
  padding: 0px 0px 8px 0px;
  font-size: 16px;
  text-align: left;
  margin: 0px 0px 12px 0px;
  border-bottom: 1px solid #4F4F4F;
  width: 90%;
}

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

.container .box i,
.container-b .box-b i {
  margin: 5px 5px 5px 0px;
  display: inline-block;
  color: var(--color-title);
  background-color: transparent;
  width: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  font-weight: 800;
  border: 1px solid var(--color-title);
  border-radius: 100px;
  box-shadow: -1px -1px 3px #faa930, 1px 1px 3px #faa930;
}

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

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

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

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

.carousel-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.carousel {
  display: flex;
}

.carousel-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused; 
}

@media (hover: none) {
.carousel-track:active {
  animation-play-state: paused;
}
}

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

CAROUSEL

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

.carousel-slide {
  flex: 0 0 auto;
  width: 220px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
  padding: 20px;
  background: var(--color-default); /* #fff */
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
}

.carousel-slide:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 24px rgba(40, 60, 148, 0.15); /* blago primary boje */
}

.carousel-slide h4 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: var(--color-primary); /* #283c94 */
  font-weight: 600;
}

.carousel-slide p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-font); /* #222 */
}

/* Uklonjen fade efekt jer više nije potreban sa belim karticama i svetlom pozadinom */
.carousel-container::before,
.carousel-container::after {
  display: none;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

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

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

.page-header {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('../img/page-header.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 160px auto 0;
  overflow: hidden;
  text-align: center;
  color: var(--color-one);
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(27, 46, 126, 0.6), rgba(40, 60, 148, 0.8));
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  color: var(--color-one);
}

.page-header .subtitle {
  font-size: 20px;
  opacity: 0.95;
  margin-top: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(27, 46, 126, 0.7);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(4px);
}

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

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 12px;
  color: #e7a300;
}

.breadcrumb i {
  margin-right: 8px;
  color: #e7a300;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 36px;
  }
  .page-header .subtitle {
    font-size: 18px;
  }
  .breadcrumb {
    top: 10px;
    left: 10px;
    font-size: 13px;
    padding: 6px 12px;
  }
}

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

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

FORMS

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--color-one);
}

.form-group input, .form-group textarea {
  width: 90%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

#contactForm button {
  width: 90%;
  padding: 0.8rem;
  background-color: var(--color-primary);
  color: var(--color-one);
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contactForm button:hover {
  opacity: 0.7;
}

.error {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  display: none;
}

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

TESTIMONIALS

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


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

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

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

  .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: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    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;
  }

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

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

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

  .carousel-slide {
    width: 180px;
    height: 110px;
    margin: 0 10px;
    padding: 15px;
  }
  
  .carousel-slide h4 {
    font-size: 1.1rem;
  }
  
  .carousel-slide p {
    font-size: 0.9rem;
  }

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

  #cookie-options label {
    display: block;
  }

  .copyright {
    font-size: 16px;
  }
}

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

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

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