

@font-face {
  font-family: lexend;
  src: url(../fonts/Lexend/LexendZetta-Light.ttf);
}
@font-face {
  font-family: mrs_saint;
  src: url(../fonts/Mrs_Saint_Delafield/MrsSaintDelafield-Regular.ttf);
}
@font-face {
  src: url(../fonts/Montserrat/static/Montserrat-Medium.ttf);
  font-family: montserrat;
}
@font-face {
  font-family: cormorant-garamond;
  src: url(../fonts/Cormorant_Garamond/static/CormorantGaramond.ttf);
}
/*------BASIC-----*/
:root {
  --black: #080808;
  --wood: #3d330c;
  --teget: #1d495e;
  --khaki: #b3a184;
  --tan: #d29648;
  --coral: #9c6335;
  --gold: #d5b605;
  --white: #faf8ec;
  --white-white: #fff;
  --price-color: #9a3131;
  --border-radius: 10px;
  --h1-font: cormorant-garamond;
  --head-font: cormorant-garamond;
  --body-font: montserrat;
  --p-color: #998c78;
  
  /* Font sizes */
  --h1-size: 2.5rem;
  --h2-size: 2rem;
  --h3-size: 1.5rem;
  --h4-size: 0.88rem;
  --h5-size: 1.3rem;
  --p-size: 0.88rem;
  --btn-size: 0.88rem;
  --small-size: 0.75rem;
}
/* :root {
  --black: #0d0c09;
  --wood: #9c7a30;
  --khaki: #d8c9a5;
  --coral: #c47b48;
  --gold: #d5b605;
  --white: #ffffff;
  --white-white: #f7f5ef;
  --price-color: #a23f2f;
  --p-color: #7a6a52;
} */
 /* :root {
  --black: #0a0b0c;
  --wood: #2f3a40;
  --khaki: #d9d1c3;
  --coral: #c07a5a;
  --gold: #c59b2f;
  --white: #ffffff;
  --white-white: #f7f6f2;
  --price-color: #b3473c;
  --p-color: #6f675d;
} */
 /* :root {
  --black: #0c0c0c;
  --wood: #7a6a38;
  --khaki: #d7cdb8;
  --coral: #c0885c;
  --gold: #c79a2a;
  --white: #ffffff;
  --white-white: #faf8f3;
  --price-color: #a84536;
  --p-color: #746856;
} */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--tan);
  border-radius: var(--border-radius);
}
::-webkit-scrollbar-track {
  background: var(--white);
}
::selection {
  background-color: var(--tan);
  color: var(--white);
}
::-moz-selection {
  background-color: var(--tan);
  color: var(--white);
}
html {
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
ol,
a {
  text-decoration: none;
  list-style: none;
}
.wood-color {
  color: var(--wood);
}
body {
  background-color: var(--white);
  overflow-x: hidden;
}
h1,
h2,
h3,
h5,
h6,
h4 {
  font-family: var(--head-font);
  text-align: left;
  color: var(--wood);
    font-weight: 400;
}
h1 {
  font-size: var(--h1-size);
  font-family: var(--h1-font);
}
h2 {
  font-size: var(--h2-size);
}
h3 {
  font-size: var(--h3-size);
}
h4 {
  
  font-family: var(--body-font);
  font-size: var(--h4-size);
  letter-spacing: 4px;
  color: var(--tan);
  text-transform: uppercase;
  word-spacing: 8px;
}
h5 {
  font-size: var(--h5-size);
}
p,
pre {
  font-family: var(--body-font);
  color: var(--p-color);
  font-size: var(--p-size);
  margin: 10px 0;
  text-align: left;
}
.small-text {
    font-size: var(--small-size);
    font-family: var(--body-font);
}
/* BUTOON  */
.btn {
  font-size: var(--btn-size);
  color: var(--white);
  padding: 14px 32px;
  font-family: var(--body-font);
  transition: 0.4s;
  position: relative;
  background: var(--teget);
  border: var(--teget) 1px solid;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  letter-spacing: 1px;
  cursor: pointer;
}
.btn b { 
  display: inline-block; 
  transition: transform .3s ease; 
  will-change: transform; 
}
.btn:hover,
.btn:focus-visible {
  color: var(--wood);
  background: transparent;
}
.btn:hover b, 
.btn:focus-visible b {
  transform: scaleX(1.5) translateX(5px);
}
/** ======= Pre-loader =======**/
#preloader {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  z-index: 9999999999999;
}

#preloader:after,
#preloader:before {
  content: "";
  position: fixed;
  left: 0;
  height: 50vh;
  width: 100%;
  background: var(--wood);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#preloader:before {
  top: 0;
}

#preloader:after {
  bottom: 0;
}

#preloader.load-1 {
  visibility: hidden;
  transition-delay: 1.3s;
}

#preloader.load-1:after,
#preloader.load-1:before {
  height: 0;
  transition: all 0.7s cubic-bezier(1, 0, 0.55, 1);
  transition-delay: 0.7s;
}

.preloader-logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: loadLogo .5s forwards;
  animation-delay: .55s;
}

@keyframes loadLogo {
  0% {
    top: 40%;
    opacity: 1;
  }
  80% {
    top: 35%;
    opacity: 1;
  }
  100% {
    top: 20%;
    opacity: 0;
  }
}

.load-line {
  position: relative;
  width: 500px;
  height: 3px;
  background: rgb(111, 111, 111);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  animation: opacity .2s forwards;
  animation-delay: .85s;
}
@keyframes opacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.load-line::before {
  position: absolute;
  content: "";
  width: 0;
  height: 3px;
  background: rgb(220, 220, 220);
  animation: loadLine .5s forwards;
}
@keyframes loadLine {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.load-line::after {
  content:'';
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
  background: #9d9d9d;
  z-index: 2;
  animation: line .9s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-delay: .5s;
  transform: translateX(-50%);
}
@keyframes line {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 100vw;
    opacity: 1;
  }
  100% {
    width: 100vw;
    opacity: 0;
  }
}
@media only screen and (max-width:600px) {
  .load-line {
    width: 160px;
  }
  .preloader-logo img {
  width: 180px;
}
}
/* ====================== End Preloader ====================== */
/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.main-nav {
  height: 80px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav .logo {
  height: 60px;
  display: flex;
  align-items: center;
}
.main-nav .logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.hamburger {
  width: 35px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.hamburger .line {
  width: 100%;
  height: 3px;
  background-color: var(--wood);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}
.hamburger.active .line1 {
  transform: translateY(8.5px) rotate(45deg);
  background-color: var(--wood);
}
.hamburger.active .line2 {
  opacity: 0;
  transform: translateX(-20px);
}
.hamburger.active .line3 {
  transform: translateY(-8.5px) rotate(-45deg);
  background-color: var(--wood);
}
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--teget);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.15);
  overflow-y: auto;
  padding: 20px 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links > li {
  border-bottom: 1px solid rgba(179, 161, 132, 0.2);
}
.nav-links > li > a {
  display: block;
  padding: 18px 20px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 1.2rem;
  transition: all 0.3s;
  position: relative;
}
.nav-links > li > a:hover {
  background-color: rgba(213, 182, 5, 0.1);
  color: var(--tan);
  padding-left: 30px;
}
.submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.submenu-toggle .arrow {
  font-size: 0.8rem;
  transition: transform 0.3s;
  color: var(--tan);
}
.has-submenu.active .submenu-toggle .arrow {
  transform: rotate(180deg);
  color: var(--tan);
}

/* Pricing Banner */
.pricing-banner {
  width: 100%;
  padding: 50px 20px;
  margin: 30px 0;
  background: var(--teget);
}
.pricing-banner__content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pricing-banner p {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
}
.pricing-banner p strong {
  color: var(--gold);
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  .pricing-banner {
    padding: 18px 16px;
    margin: 24px 0;
  }
  .pricing-banner p {
    font-size: 0.95rem;
  }
}

/* Bottom CTA */
.cta-bottom {
  width: 100%;
  padding: 60px 20px 80px 20px;
}
.cta-bottom__content {
  max-width: 1200px;
  margin: 0 auto;
}
.cta-bottom h2 {
  margin-bottom: 8px;
}
.cta-bottom p {
  margin-bottom: 18px;
}
.cta-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}
@media (max-width: 600px) {
  .cta-bottom {
    padding: 28px 16px;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
}
.submenu {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
  transition: max-height 0.4s ease-in-out;
}
.has-submenu.active .submenu {
  max-height: 500px;
}
.submenu li {
  border-bottom: 1px solid rgba(179, 161, 132, 0.1);
}
.submenu li:last-child {
  border-bottom: none;
}
.submenu a {
  display: block;
  padding: 15px 20px 15px 40px;
  color: var(--khaki);
  font-family: var(--body-font);
  font-size: 0.95rem;
  transition: all 0.3s;
}
.submenu a:hover {
  color: var(--gold);
  padding-left: 50px;
  background-color: rgba(213, 182, 5, 0.05);
}
.phone-link {
  margin-top: 20px;
  padding: 0 20px;
}
.phone-link a {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--tan);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s;
}
.phone-link a:hover {
  background-color: var(--khaki);
  transform: scale(1.05);
}
.language-links {
  display: flex;
  gap: 15px;
  padding: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(179, 161, 132, 0.2);
}
.language-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background-color: rgba(179, 161, 132, 0.1);
  border-radius: var(--border-radius);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.language-links a img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.language-links a:hover {
  background-color: var(--gold);
  color: var(--wood);
}
body.menu-open {
  overflow: hidden;
}
main {
  margin-top: 80px;
}
@media (max-width: 768px) {
    .main-nav {
  padding: 0 20px;
}
}


/* TITLE DECORATION - Ornament ispod naslova */
.title-decoration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  margin-bottom: 18px;
  height: 10px;
}

.deco-line {
  position: relative;
  flex: 1;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--tan) 0%, 
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(213, 182, 5, 0.3);
}
.deco-line2 {
  position: relative;
  flex: 1;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--teget) 0%, 
    transparent 100%
  );
  box-shadow: 0 0 8px rgba(213, 182, 5, 0.3);
}




@media (max-width: 768px) {
  .title-decoration {
    margin-bottom: 10px;
    height: 16px;
  }
  
  .deco-line, .deco-line2 {
    max-width: 150px;
  }

}
/* INDEX HERO  */
.derocation-hero {
    position: absolute;
    top: -150px;
    left: -100px;
    opacity: 0.04;
    width: 500px;
    height: auto;
    z-index: 2;
}
.index-hero {
  position: relative;
  display: flex;
  height: 80vh;
  align-items: center;
  gap: 30px;
  background-color: var(--white);
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 20px;
  max-width: 560px;
  width: 55%;
  justify-self: start;
  left: 10%;
}
.hero-content p {
  margin-top: 10px;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.google-review {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}
.google-review h4 {
  color: var(--wood);
  font-size: 1.5rem;
  transform: translateY(-3px);
}
.google-review img {
  height: 26px;
  width: auto;
}
.svg-wraper {
  position: absolute;
  inset: 0;
  
  pointer-events: none;
}
.index-hero .svg-wraper {
  overflow: hidden;
  z-index: 1;
}
.hero-svg {
  width: 100%;
  height: 100%;
}
.index-hero .hero-blob {
  display: block;
  transform: scale(1.02);
  transform-origin: center;
}
.hero-fill { fill: var(--wood); }
.hero-fill2 { fill: var(--khaki); }
.black-fill { fill: var(--gold); }
.hero-svg .shadow-soft {
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.708));
}
.hero-svg .shadow-br {
  filter: drop-shadow(8px 10px 20px rgba(0, 0, 0, 0.699));
}
.hero-svg .shadow-bl {
  filter: drop-shadow(-8px 10px 20px rgba(0, 0, 0, 0.695));
}
.hero-svg .shadow-tr {
  filter: drop-shadow(8px -10px 20px rgba(0, 0, 0, 0.696));
}
.hero-svg .shadow-tl {
  filter: drop-shadow(8px -10px 20px rgba(0, 0, 0, 0.692));
}
.hero-media {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 80vh;
  z-index: 0;
  overflow: hidden;
  display: flex;
    align-items: center;
    justify-content: center;
}
.hero-media picture {
  display: flex;
    align-items: center;
    justify-content: center;
}
.hero-media img {
    animation: zoommm 15s ease-in-out infinite;
}
@keyframes zoommm {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.hero-image {
  position: absolute;
  right: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-deco-lines {
  z-index: 3;
  width: 100%;
  height: 100%;
  animation: moving-line0 5s ease-in-out ;
  opacity: 0;
}
@keyframes moving-line0 {
  0% {
    border-top: 2px solid var(--white);
    height: 100%;
    opacity: 1;
  }
  50% {
    border-top: 20px solid var(--white);
    height: 70%;
  }
  93% {
    opacity: 1;
  }
  100% {
    border-top: 2px solid var(--white);
    height: 100%;
    opacity: 0;
  }
}
.hero-deco-line1 {
  z-index: 3;
  width: 100%;
  height: 80%;
  border: solid 15px var(--white);
  animation: moving-line 5s ease-in-out ;
}
@keyframes moving-line {
  0% {
    transform: scaleY(1);
    border-right: 2px solid var(--white);
  }
  50% {
    transform: scaleY(0);
    border-right: 200px solid var(--white);
  }
  93% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    border-right: 2px solid var(--white);
    opacity: 0;
  }
}
.hero-deco-line2 {
  z-index: 3;
  width: 100%;
  height: 100%;
  border: solid 5px var(--white);
  animation: moving-line2 5s ease-in-out ;
}
@keyframes moving-line2 {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.3);
  }
  93% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}
.hero-deco-line3 {
  z-index: 3;
  width: 100%;
  height: 150px;
  border: solid 5px var(--white);
  animation: moving-lin3e 10s ease-in-out ;
}
@keyframes moving-line3 {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.3);
  }
  93% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

/* About page specific hero adjustments */
.page-about .index-hero {
  height: 50vh;
}
.page-about .hero-content {
  transform: translateY(40px);
}
.page-about .hero-media {
  height: 100%;
}

.page-about .hero-image {
  animation: heroImageZoom 22s ease-in-out infinite;
  transform-origin: center bottom;
  bottom: unset;
}

@keyframes heroImageZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}


@media (max-width: 1000px) {
  .index-hero .svg-wraper {
  display: none;
}
  .hero-media {
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }
  .index-hero {
    padding: 40px 16px;
    background-color: var(--tan);
    }
  .hero-content {
    padding: 10px;
    width: 90%;
    z-index: 2;
    left: 10%;
  }
  .google-review h4 {
    color: var(--white);
  }
  .hero-content h1, .hero-content p {
    color: var(--white);
  }
  .hero-content .btn {
    border: solid 1px var(--white);
  }
  .hero-decor {
    margin: 10px auto 0;
  }

  .hero-image {
    width: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.48);
  }
  @keyframes heroImageMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(27%);
  }
  100% {
    transform: translateY(0);
  }
}
}
@media (max-width: 500px) {
  .derocation-hero {
    width: 100%;
}
}
@media (max-width: 450px) {
  .hero-content {
    left: 5%;
  }
  .hero-content h4 {
    font-size: .7rem;
    letter-spacing: 3px;
  }
}
/* HERO BACKGROUND DECOR SHAPES */
.hero-bg {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 30%;
  background-color: var(--tan);
  border-bottom-right-radius: 16px;
  border-top-right-radius: 16px;
}

.hero-dots {
  position: absolute;
  left: 8%;
  bottom: 22px;
  display: flex;
  gap: 10px;
  z-index: 2;
  animation: heroDotsDrift 8s ease-in-out infinite;
}

.hero-dot {
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.hero-dot--teget {
  width: 35px;
  height: 35px;
  background: var(--teget);
  animation: heroDotPulse 7s ease-in-out infinite;
}

.hero-dot--tan {
  width: 14px;
  height: 14px;
  background: var(--tan);
  align-self: flex-end;
  transform: translateY(6px);
  animation: heroDotPulseSmall 4s ease-in-out infinite;
}

@keyframes heroDotsDrift {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px) translateX(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes heroDotPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes heroDotPulseSmall {
  0% {
    transform: translateY(13px) translateX(0) scale(1);
  }
  50% {
    transform: translateY(6px) translateX(16px) scale(1.08);
  }
  100% {
    transform: translateY(13px) translateX(0) scale(1);
  }
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
}

.bg-shape {
  position: absolute;
  background: rgba(175, 175, 175, 0.074);
  border: 3px solid rgba(85, 85, 85, 0.18);
  mix-blend-mode: multiply;
  opacity: .15;
}

.bg-square {
  width: 170px;
  height: 170px;
}
.bg-square2 {
  width: 140px;
  height: 190px;
}

.bg-rect-wide {
  width: 120px;
  height: 140px;
}

.bg-rect-tall {
  width: 160px;
  height: 180px;
}

.hero-bg-shapes .bg-square:nth-child(1) {
  left: 30%;
  top: 170px;
}
.hero-bg-shapes .bg-square2:nth-child(5) {
  left: 24%;
  top: 220px;
}

.hero-bg-shapes .bg-rect-wide:nth-child(2) {
  left: 15.5%;
  top: 270px;
}

.hero-bg-shapes .bg-rect-tall:nth-child(3) {
  left: 28%;
  top: 80px;
}

.hero-bg-shapes .bg-square:nth-child(4) {
  left: 36%;
  top: 300px;
}

@media (max-width: 1000px) {
  .hero-dot--teget {
  width: 30px;
  height: 30px;
  background: var(--white);
}
}
@media (max-width: 470px) {
  .hero-bg {
    width: 14px;
    border-bottom-right-radius: 9px;
  border-top-right-radius: 9px;
  height: 40%;
  }
}



/* SAJT DEKORACIJA  */
.site-dekoracija {
  border-top: 5px solid var(--teget);
  border-bottom: 0.6px solid var(--tan);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.225);
}
.site-dekoracija2 {
  border-top: 0.6px solid var(--tan);
  border-bottom: 5px solid var(--teget);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
  box-shadow: -5px -5px 5px rgba(0, 0, 0, 0.222);
}

.poruka {
  font-style: italic;
  padding: 20px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ABOUT SECTION */
.about-section {
  padding: 60px 20px;
}
.about-section.alt-bg {
  background-color: #f8f6f3;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border: solid 1px var(--tan);
  border-radius: var(--border-radius);
  position: relative;
  
}
.about-content {
  order: 2;
  position: relative;
  z-index: 3;
  padding: 50px 20px;
}
.about-media {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.about-image {
  height: 100%;
  position: relative;
  order: 1;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  border-radius: var(--border-radius);
  border-bottom: 2px solid var(--tan);
}
.about-media .decoration-card, .team-card .decoration-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  z-index: 3;
  pointer-events: none;
  transform: translateY(6px);
  display: none;
}
.about-media .decoration-card::after, .team-card .decoration-card::after {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.about-image img {
  animation: move 12s infinite ease-in-out;
}
.about-container .svg-wraper {
  z-index: 2;
}
.about-image .about-image1 {
  border-bottom: 6px solid var(--gold);
  width: 100%;
}
.about-image .about-image2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Reverse layout class for flexible use */
.about-section.reverse-layout {
  background-color: #f8f6f3;
}
.about-section.reverse-layout .about-content {
  order: 1;
}
.about-section.reverse-layout .about-image {
  order: 2;
}
@keyframes move {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.about-content h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-content h2 {
  line-height: 1.3;
}
.about-content p {
  margin-bottom: 30px;
  line-height: 1.6;
}
.about-content ul {
  list-style: none;
  padding: 0;
}
.about-content ul li {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--p-color);
  font-size: var(--p-size);
}
.about-list {
  margin-left: 20px;
  margin-bottom: 20px;
}
.about-stats {
  margin-top: 30px;
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  align-items: center;
}
.stat-box {
  text-align: center;
  padding: 16px;
  flex: 1 1 0;
}
.stat-box:first-child {
  padding-left: 0;
}
.stat-box h4 {
  font-size: 2rem;
  margin-bottom: 5px;
}
.stat-box p {
  color: var(--wood);
  margin: 0;
}
.stat-divider {
  display: none;
}
.about-image {
  position: relative;
  order: 1;
}
.about-image picture {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: right;
}
.animation-none .about-image {
  animation: none;
}
/* Service Intro page-specific override: no animation or shadow */
.service-intro .about-image {
  animation: none;
}
.service-intro .about-image picture,
.service-intro .about-image img {
  box-shadow: none;
}

.investor-logo-wrapper img {
  box-shadow: none;
}

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 24px;
  }
  .about-section.reverse-layout .about-content {
  order: 2;
}
.about-media {
  height: fit-content;
}
.about-section.reverse-layout .about-image {
  order: 1;
}
.about-section .about-image {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.about-container .svg-wraper {
  display: none;
}
.about-container .decoration-card, .team-card .decoration-card {
  display: block;
}
}
@media (max-width: 768px) {
  .about-container {
    gap: 30px;
  }
  .about-stats {
    justify-content: center;
    gap: 16px 20px;
  }
  .stat-box h4 {
    font-size: 1.5rem;
  }
}
@media (max-width: 450px) {
  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .about-stats .stat-box {
    flex: 1 1 45%;
    padding: 0;
  }
}

/* About section additional styles */
.about-features {
  list-style: none;
  padding: 0;
  margin-left: 0;
  line-height: 1.8;
}

.about-features li {
  margin-bottom: 15px;
  color: var(--p-color);
  font-size: var(--p-size);
  font-family: var(--body-font);
}

.about-conclusion {
  margin-top: 20px;
}

/* CTA SECTION */
.cta-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--tan) 0%, var(--teget) 80%, var(--teget) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(213, 182, 5, 0.1), transparent 60%);
  pointer-events: none;
}
.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.decoration-krug {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--tan);
  position: absolute;
  bottom: 20%;
  right: 2%;
  animation: krug1 8s ease-in-out infinite reverse;
}
@keyframes krug1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  35% {
    transform: translate3d(18px, 8px, 0) scale(1.05);
  }
  70% {
    transform: translate3d(46px, 18px, 0) scale(0.98);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 0;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.benefit-item svg {
  flex-shrink: 0;
  color: var(--gold);
}
.benefit-item span {
  font-size: var(--p-size);
  font-family: var(--body-font);
}
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--khaki);
  color: var(--wood);
  border-color: var(--khaki);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--wood);
}
.cta-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  border: solid 2px var(--gold);
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-image {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 16px;
  }
  .cta-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* LATEST PROPERTIES */
.latest-section {
  padding: 60px 20px;
}
.latest-container {
  max-width: 1200px;
  margin: 0 auto;
}
.latest-header {
  margin-bottom: 40px;
}
.latest-header img {
  max-width: 200px;
  height: auto;
}
.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.latest-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.108);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.decoration-card {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  z-index: 3;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-left: 3px solid var(--tan);
  border-right: 3px solid var(--tan);
  border-bottom: 1px solid var(--tan);
  transform: translateY(4px);
}
.decoration-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  z-index: 3;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-left: 3px solid var(--tan);
  border-right: 3px solid var(--tan);
  transform: translateX(-2px) translateY(10px);
}
.decoration-card2 {
  position: absolute;
  left: 20%;
  bottom: 0;
  width:15px;
  height: 15px;
  z-index: 3;
  border-radius: 50%;
  background-color: var(--tan);
  transform: translateY(50%);
}
.decoration-card3 {
  position: absolute;
  left: 13%;
  bottom: 0;
  width:22px;
  height: 22px;
  z-index: 3;
  border-radius: 50%;
  background-color: var(--teget);
  transform: translateY(50%);
}
.latest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.latest-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-bottom: 3px solid var(--tan);
}

.latest-image img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  display: block;
}
.latest-body {
  position: relative;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  flex: 1;
  overflow: hidden;
  
}
.latest-body .svg-wraper {
  z-index: 0;
}
.latest-body-logo {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  opacity: 0.2;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}
.latest-title h3 {
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
}
.latest-title {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.latest-title address {
  font-style: normal;
  color:#855f2d;
  font-size:var(--p-size);
  position: relative;
  z-index: 1;
}
.latest-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 16px;
}
.latest-meta .price {
  font-weight: 700;
  color: var(--price-color);
  font-size: 1.1rem;
  font-family: var(--body-font);
  letter-spacing: 0.5px;
  align-self: flex-start;
}
.latest-meta .price span {
  font-size: 0.9rem;
  color: var(--price-color);
  margin-left: 6px;
  font-weight: 600;
}
.meta-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  color: var(--wood);
  font-size: 0.85rem;
  font-family: var(--body-font);
  font-weight: 500;
  width: 100%;
  order: -1;
}

.meta-city {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-type {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-structure {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-surface {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-city,
.meta-type,
.meta-structure,
.meta-surface {
  white-space: nowrap;
}
.divider-dot {
  display: none;
}

@media (max-width: 768px) {
  .latest-section {
    padding: 60px 20px;
  }
}
/* NOVOGRADNJA  */
.novogradnja-section {
  padding: 60px 20px;
  background-color: var(--white);
}
.novogradnja-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.novogradnja-header h2 {
  margin-bottom: 0;
}
.novogradnja-header p {
  max-width: 720px;
}
.novogradnja-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  max-height: 880px;
  overflow: hidden;
}
.novogradnja-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  max-height: 880px;
  overflow: hidden;
}
.novogradnja-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  isolation: isolate;
  background: #000;
}
.novogradnja-card picture {
  height: 112%;
}
.novogradnja-card img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.novogradnja-right .novogradnja-card {
  min-height: 200px;
}
.novogradnja-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(8,8,8,0.05) 0%, rgba(8,8,8,0.35) 50%, rgba(8,8,8,0.65) 100%);
}
.novogradnja-svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.novogradnja-svg svg {
  width: 100%;
  height: 100%;
}
.novogradnja-text {
  position: relative;
  z-index: 1;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.novogradnja-text h3 {
  color: var(--white);
  margin: 0;
}
.novogradnja-location {
  color: rgba(255,255,255,0.85);
  font-size: var(--p-size);
  font-family: var(--body-font);
}
.novogradnja-price {
  color: var(--gold);
  font-family: var(--body-font);
  font-weight: 700;
}
.novogradnja-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .novogradnja-grid {
    grid-template-columns: 1fr;
    max-height: unset;
  }
  .novogradnja-right {
    grid-template-rows: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .novogradnja-section {
    padding: 60px 16px;
  }
  .novogradnja-overlay {
    padding: 18px;
  }
  .novogradnja-right .novogradnja-card {
    min-height: 180px;
  }
}

@media (max-width: 480px) {
  .novogradnja-text h3 {
    font-size: var(--h3-size);
  }
  .novogradnja-price {
    font-size: var(--p-size);
  }
}

/* TEAM SECTION */
.team-section {
  padding: 60px 20px;
  background-color: var(--white);
}
.team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.team-container h2 {
  text-align: left;
  margin-bottom: 0;
}
.team-container h4 {
  text-align: left;
}
.team-container p {
  text-align: left;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(179, 161, 132, 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.team-image {
  position: relative;
  overflow: hidden;
  background-color: var(--black);
      border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom: 3px solid var(--tan);
    aspect-ratio: 4 / 3;
}
.team-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-image img {
  transform: scale(1.05);
}
.team-info {
  padding: 24px;
  text-align: left;
   border-bottom: 2px solid var(--wood);
}
.team-info h3 {
  margin: 0 0 8px 0;
}
.team-role {
  color: var(--khaki);
  font-size: var(--p-size);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.team-license {
  margin: 0 0 16px 0;
}
.team-email a {
  color: var(--wood);
  text-decoration: none;
  font-size: var(--p-size);
  transition: color 0.3s ease;
}
.team-email a:hover {
  color: var(--gold);
  text-decoration: underline;
}
.team-contact {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 16px;
}
.team-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wood);
  font-size: var(--p-size);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--khaki);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}
.team-phone:hover {
  background: var(--wood);
  color: var(--white);
  border-color: var(--wood);
}
.team-phone svg {
  stroke: currentColor;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* COMPANY INFO SECTION */
.company-info-section {
  padding: 60px 20px;
  background-color: var(--white);
}
.company-info-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.company-info-container h2 {
  text-align: left;
  margin-bottom: 0;
}
.company-info-container h4 {
  text-align: left;
}
.company-info-container p {
  text-align: left;
  margin-bottom: 40px;
}
.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.info-card {
  background: rgb(254, 254, 248);
  border: 1px solid var(--tan);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--tan);
  border-radius: var(--border-radius);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.info-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(61, 51, 12, 0.08);
  border-color: var(--tan);
}
.info-card:hover::before {
  opacity: 1;
}
.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
  transition: all 0.3s ease;
}
.info-card:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
}
.info-content {
  flex: 1;
  text-align: left;
}
.info-content h5 {
  letter-spacing: 0.5px;
}
.info-content p {
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}
.info-content a {
  color: var(--p-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.info-content a:hover {
  color: var(--wood);
}
@media (max-width: 768px) {
  .company-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .info-card {
    padding: 20px;
  }
  .info-icon {
    width: 40px;
    height: 40px;
  }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 60px 20px;
  background-color: #fafaf8;
}
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-container h2 {
  text-align: left;
  margin-bottom: 0;
}
.testimonials-container a {
  color: var(--wood);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(179, 161, 132, 0.15);
  border-radius: var(--border-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(213, 182, 5, 0.09), transparent 60%);
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 51, 12, 0.08);
}
.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(179, 161, 132, 0.2);
}
.author-info h4 {
  margin: 0 0 4px 0;
  letter-spacing: 1px;
  color: var(--wood);
}
.author-location {
  color: var(--khaki);
  font-size: var(--p-size);
}
.google-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.testimonial-rating {
  color: #fbbc04;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.testimonial-text {
  line-height: 1.7;
  color: var(--p-color);
  margin: 0;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 16px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    padding: 24px;
  }
  .google-logo {
    width: 85px;
  }
}

@media (max-width: 480px) {
  .testimonial-author img {
    width: 48px;
    height: 48px;
  }
  .google-logo {
    width: 75px;
  }
}

/* PROPERTY MANAGEMENT SECTION */
.property-management-section {
  padding: 60px 20px;
  background-color: var(--white);
}
.property-management-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.management-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  /* box-shadow: 0 10px 40px rgba(61, 51, 12, 0.1); */
  position: relative;
}
.management-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.management-image:hover img {
  transform: scale(1.05);
}
.management-content h2 {
  margin-bottom: 0;
}
.management-content p {
  margin-bottom: 28px;
  line-height: 1.7;
}
.management-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: grid;
  gap: 14px;
}
.management-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wood);
  font-family: var(--body-font);
}
.management-features li svg {
  flex-shrink: 0;
  color: var(--gold);
  stroke-width: 2.5;
}
.management-features li span {
  font-size: var(--p-size);
}

@media (max-width: 1024px) {
  .property-management-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .management-image {
    order: -1;
    max-height: 450px;
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .property-management-section {
    padding: 60px 16px;
  }
  .management-features {
    gap: 12px;
  }
}

/* SECTOR COUNTER SECTION */
.sector-counter-section {
  background: linear-gradient(135deg, var(--teget) 0%, #171a3d 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.sector-counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(213, 182, 5, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(213, 182, 5, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.sector-counter-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sector-counter-content {
  text-align: center;
}

.sector-counter-content h2 {
  color: var(--gold);
  font-size: var(--h2-size);
  margin-bottom: 10px;
}

.sector-counter-content p {
  color: var(--khaki);
  font-size: 1.1rem;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.sector-counter-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 20px;
}

.sector-counter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out forwards;
  padding: 20px;
  transition: transform 0.3s ease;
}

.sector-counter:nth-child(1) {
  animation-delay: 0.1s;
}
.sector-counter:nth-child(2) {
  animation-delay: 0.2s;
}
.sector-counter:nth-child(3) {
  animation-delay: 0.3s;
}
.sector-counter:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter-svg {
  width: 200px;
  height: 200px;
  transform: rotate(-90deg);
  filter: drop-shadow(0 4px 12px rgba(213, 182, 5, 0.3));
  transition:  0.3s ease;
}

.counter-bg {
  fill: none;
  stroke: rgba(213, 182, 5, 0.15);
  stroke-width: 10;
}

.counter-fill {
  fill: none;
  stroke: #d5b605;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
  transition: stroke-dashoffset 0.5s ease;
  filter: drop-shadow(0 0 6px rgba(213, 182, 5, 0.6));
}

.counter-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--gold);
  font-family: var(--h1-font);
  line-height: 1;
}

.counter-label {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--khaki);
  margin-top: 8px;
  text-align: center;
  max-width: 150px;
  letter-spacing: 0.3px;
}

/* Hover efekti */
.sector-counter:hover {
  transform: scale(1.08);
}

.sector-counter:hover .counter-svg {
  filter: drop-shadow(0 6px 20px rgba(255, 215, 0, 0.5));
  border: solid 1px var(--khaki);
}

.sector-counter:hover .counter-fill {
  stroke: #ffd700;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}
/* SVG Gradient Definition */
.counter-gradient-def {
  position: absolute;
}

.gradient-stop-1 {
  stop-color: #d5b605;
  stop-opacity: 1;
}

.gradient-stop-2 {
  stop-color: #ffd700;
  stop-opacity: 1;
}
/* Responsive */
@media (max-width: 768px) {
  .sector-counter-section {
    padding: 50px 15px;
  }

  .sector-counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .sector-counter-content h2 {
    font-size: 1.8rem;
  }

  .counter-svg {
    width: 160px;
    height: 160px;
  }

  .counter-number {
    font-size: 2rem;
  }

  .counter-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .sector-counter-section {
    padding: 40px 10px;
  }

  .sector-counter-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .sector-counter-content h2 {
    font-size: 1.5rem;
  }

  .sector-counter-content p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .counter-svg {
    width: 140px;
    height: 140px;
  }

  .counter-number {
    font-size: 1.8rem;
  }

  .counter-label {
    font-size: 0.8rem;
    max-width: 120px;
  }
}

/* PARTNERS SECTION */
.partners-section {
  padding: 60px 20px;
  background-color: var(--white);
  overflow: hidden;
}
.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}
.partners-container h2 {
  text-align: left;
  margin-bottom: 0;
}
.partners-slider {
  display: flex;
  gap: 60px;
  animation: slide 30s linear infinite;
  will-change: transform;
  margin-top: 30px;
}
.partners-slider a {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  transition: 0.3s;
}
.partners-slider a:hover {
  transform: scale(1.1);
}
.partners-slider img {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}
.partners-slider a:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-150px * 8 - 60px * 8));
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 60px 16px;
  }
  .partners-slider {
    gap: 40px;
  }
  .partners-slider a {
    width: 120px;
  }
  .partners-slider img {
    height: 50px;
    max-width: 120px;
  }
  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-120px * 8 - 40px * 8));
    }
  }
}

/* OFFER FORM SECTION */
.offer-form-section {
  padding: 60px 20px;
}
.offer-form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.offer-form-intro h2 {
  margin-bottom: 0;
}
.offer-form-intro p {
  margin: 16px 0 20px 0;
}
.offer-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.offer-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--white);
  border: 1px solid rgba(179, 161, 132, 0.3);
  border-radius: var(--border-radius);
  color: var(--wood);
  font-family: var(--body-font);
  box-shadow: 0 6px 18px rgba(61, 51, 12, 0.08);
}
.offer-form-card {
  background: var(--white);
  border: 1px solid rgba(179, 161, 132, 0.25);
  border-radius: var(--border-radius);
  padding: 28px;
  box-shadow: 0 12px 32px rgba(61, 51, 12, 0.08);
}
.offer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--body-font);
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label,
.form-field .label {
  color: var(--wood);
  letter-spacing: 0.2px;
  font-family: var(--body-font);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--border-radius);
  border: 1px solid #ddd;
  background: var(--white-white);
  font-family: var(--body-font);
  font-size: var(--p-size);
  color: var(--wood);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field select {
  padding: 12px 40px 12px 15px;
  appearance: none;
  background-color: var(--white-white);
  background-image: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}
.form-field .select-wrapper {
  position: relative;
}
.form-field .select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 18px;
  color: #000;
}
.form-field .select-arrow svg {
  width: 18px;
  height: 18px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aaa;
  font-size: var(--p-size);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--khaki);
  box-shadow: 0 0 0 3px rgba(179, 161, 132, 0.1);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.field-error {
  color: #c0392b;
  font-size: 0.85rem;
  font-family: var(--body-font);
}
.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-items: start;
}
.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  background: var(--white-white);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--body-font);
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}
.radio-pill input {
  accent-color: var(--khaki);
  width: fit-content;
}
.radio-pill:hover {
  border-color: var(--khaki);
  box-shadow: 0 4px 12px rgba(61, 51, 12, 0.08);
}
.toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-items: start;
}
.toggle-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid #dddddd96;
  border-radius: var(--border-radius);
  background: var(--white-white);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--body-font);
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}
.toggle-item.slim {
  width: auto;
  padding: 10px 14px;
}
.toggle-item input {
  accent-color: var(--khaki);
  width: fit-content;
}
.toggle-item span {
  font-size: 0.9rem;
}
.toggle-item:hover {
  border-color: var(--khaki);
  box-shadow: 0 6px 16px rgba(61, 51, 12, 0.08);
}
.toggle-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.toggle-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: 15px;
  background: var(--white-white);
  transition: all 0.2s ease;
}
.toggle-row:hover {
  border-color: var(--khaki);
  box-shadow: 0 4px 12px rgba(179, 161, 132, 0.08);
}
.toggle-label {
  color: var(--wood);
  letter-spacing: 0.2px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 8px;
}
.toggle-options {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 992px) {
  .toggle-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .toggle-row {
    padding: 12px;
  }
  .toggle-label {
    font-size: 0.9rem;
  }
  .hero-dots {
    left: 6%;
    bottom: 16px;
  }
}
.form-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.offer-submit {
  background: linear-gradient(135deg, var(--khaki) 0%, var(--gold) 100%);
  color: var(--wood);
  border: 1px solid var(--khaki);
  padding: 12px 22px;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-family: var(--body-font);
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}
.offer-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(61, 51, 12, 0.15);
}
.form-note {
  color: var(--p-color);
  margin: 0;
  font-size: 0.9rem;
  font-family: var(--body-font);
}

@media (max-width: 1024px) {
  .offer-form-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .offer-form-grid {
    grid-template-columns: 1fr;
  }
  .offer-bullets span {
    width: 100%;
  }
}

/* ABOUT PRODAJA SECTION */
.about-prodaja-section {
  padding: 60px 20px;
}
.about-prodaja-container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-prodaja-container h2 {
  text-align: left;
  margin-bottom: 0;
}
.about-prodaja-container h3 {
  margin-top: 30px;
  margin-bottom: 12px;
}
.about-prodaja-container p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-prodaja-container ul {
  line-height: 1.5;
}
.about-prodaja-container ul li {
  margin-bottom: 12px;
  font-size: var(--p-size);
  font-family: var(--body-font);
  color: var(--p-color);
}
.about-prodaja-item {
  width: 100%;
  border: 1px solid var(--tan);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  position: relative;
}
.about-prodaja-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
}
.about-prodaja-item p {
  width: 94%;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.process-step {
  background: linear-gradient(135deg, #f8f6f3 0%, #faf9f7 100%);
  border: 1px solid #e0d9d0;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--khaki) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61, 51, 12, 0.12);
  border-color: var(--khaki);
}
.process-step:hover::before {
  opacity: 1;
}
.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--tan) 0%, rgb(242, 169, 0) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3rem;
  font-family: var(--h1-font);
  box-shadow: 0 4px 12px rgba(179, 161, 132, 0.3);
}
.step-content {
  flex: 1;
}
.step-content h4 {
  margin: 0 0 6px 0;
  color: var(--wood);
  font-size: 1rem;
  font-family: var(--head-font);
  letter-spacing: 0.5px;
}
.step-content p {
  margin: 0;
  color: var(--p-color);
  font-size: var(--p-size);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .process-step {
    padding: 16px;
  }
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* FAQ SECTION */
.faq-section {
  padding: 60px 20px 80px 20px;
  border-top: 1px solid rgba(128, 128, 128, 0.147);
}
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-container h2 {
  text-align: left;
  margin-bottom: 0;
}
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background-color: var(--white);
  border: 1px solid rgba(179, 161, 132, 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: 0.3s;
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(61, 51, 12, 0.08);
}
.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  transition: 0.3s;
}
.faq-question:hover {
  background-color: rgb(251, 251, 234);
}

.faq-icon {
  font-size: 28px;
  color: var(--wood);
  font-weight: 300;
  flex-shrink: 0;
  transition: 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 16px;
  }
  .faq-question {
    padding: 20px;
  }
  .faq-answer p {
    padding: 0 20px 20px;
  }
}
/* CONTACT SECTION */
.contact-section {
  padding: 60px 20px;
  background: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper h4,
.contact-info-wrapper h4 {
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contact-form-wrapper .title-decoration,
.contact-info-wrapper .title-decoration {
  margin-bottom: 20px;
}

.contact-form-wrapper p {
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--body-font);
  font-size: var(--p-size);
  font-weight: 500;
  color: var(--wood);
}

.form-input,
.form-textarea {
  font-family: var(--body-font);
  font-size: var(--p-size);
  padding: 12px 16px;
  border: 1px solid rgba(179, 161, 132, 0.4);
  border-radius: var(--border-radius);
  background: var(--white);
  color: var(--wood);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(179, 161, 132, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--teget);
  color: var(--white);
  border: var(--teget) solid 2px;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: var(--btn-size);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-primary:hover {
  background: var(--white);
  color: var(--teget);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(179, 161, 132, 0.3);
}

.btn-primary svg {
  stroke: currentColor;
}

.form-success {
  padding: 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: var(--border-radius);
  color: #2e7d32;
  font-family: var(--body-font);
  font-size: var(--p-size);
  margin-top: 20px;
}

.form-error {
  padding: 16px;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: var(--border-radius);
  color: #c62828;
  font-family: var(--body-font);
  font-size: var(--p-size);
  margin-top: 20px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(179, 161, 132, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid var(--tan);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(8px);
  border-color: var(--khaki);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
}

.contact-info-content h5 {
  margin: 0 0 8px 0;
}

.contact-info-content p {
  font-family: var(--body-font);
  font-size: var(--p-size);
  color: var(--p-color);
  margin: 0;
  line-height: 1.6;
}

.contact-info-content a {
  color: var(--p-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: var(--khaki);
}

/* MAP SECTION */
.map-section {
  width: 100%;
  height: 400px;
}

.map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }

  .map-section {
    height: 300px;
  }
}

@media (max-width: 450px) {
  .btn-primary {
    width: 100%;
  }

  .contact-info-item {
    padding: 16px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }
}






/* FOOTER */
footer {
  background: linear-gradient(to bottom, var(--teget),var(--teget), rgb(21, 29, 57));
  padding: 60px 20px 0;
}
.footer-nekretnine {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-column .logo-footer {
  height: auto;
}
.footer-column p {
  color: var(--white);
  line-height: 1.6;
}
.footer-column h4 {
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.footer-column h5 {
  color: var(--khaki);
  font-size: var(--p-size);
  font-family: var(--body-font);
  transition: 0.3s;
}
.footer-column a {
  transition: 0.3s;
}
.footer-column a:hover h5 {
  color: var(--tan);
  transform: translateX(5px);
}
.footer-column iframe {
  border-radius: var(--border-radius);
  margin-top: 10px;
  border: 3px solid var(--tan);
  outline: 4px solid var(--white);
}
.margin-footer-ikone {
  margin-top: 20px;
}
.ikone {
  display: flex;
  gap: 15px;
  align-items: center;
}
.ikone a {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid var(--tan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.ikone a:hover {
  background-color: var(--tan);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.ikone svg {
  width: 18px;
  height: 18px;
}
.copyright {
  border-top: 1px solid rgba(179, 161, 132, 0.3);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
.copyright span {
  color: var(--khaki);
  font-family: var(--body-font);
  font-size: 0.85rem;
}
.copyright .designed11 {
  font-size: 12px;
  font-family: lexend;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -2px;
  color: turquoise;
  margin: 0;
  transition: 0.5s;
}
.copyright .designed11:hover {
  transform: scale(0.95);
}
.copyright .designed11 span {
  font-size: 30px;
  font-family: mrs_saint;
  text-align: center;
  color: var(--gold);
  transition: 0.5s;
}
.copyright .designed11:hover span {
  transform: scale(0.95);
}
/* Google Maps Embed */
.google-map-embed {
  width: 100%;
  height: 200px;
  border: 0;
}

@media (max-width: 768px) {
  .google-map-embed {
    height: 300px;
  }
}
/* call ACTION BUTTONS */
#call-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  border: none;
  background: var(--tan);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  bottom: 30px;
  right: 30px;
  border-radius: 8px;
}

#call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(197, 160, 89, 0.4);
}

#call-btn.visible {
  opacity: 1;
  visibility: visible;
}
#top-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  border: none;
  background: var(--tan);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  bottom: 30px;
  left: 30px;
  border-radius: 8px;
}
#top-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(197, 160, 89, 0.4);
}
#top-btn.visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 600px) {
  #call-btn{
    right: 18px;
    bottom: 18px;
  }
  #top-btn {
    left: 18px;
    bottom: 18px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 40px 15px 0;
  }
  .footer-nekretnine {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .copyright {
    flex-direction: column;
    text-align: center;
  }
}

/* RESPONSIVE FONT SIZES */
@media (max-width: 1024px) {
  :root {
    --h1-size: 2.2rem;
    --h2-size: 1.8rem;
    --h3-size: 1.3rem;
    --h5-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --h1-size: 2rem;
    --h2-size: 1.6rem;
    --h3-size: 1.2rem;
    --h5-size: 1.1rem;
    --p-size: 0.85rem;
    --btn-size: 0.82rem;
  }
}

@media (max-width: 600px) {
  :root {
    --h1-size: 1.7rem;
    --h2-size: 1.4rem;
    --h3-size: 1.1rem;
    --h5-size: 1rem;
    --p-size: 0.82rem;
    --btn-size: 0.78rem;
    --small-size: 0.7rem;
  }
  .language-links a {
  font-size: 0.85rem;
}
.nav-links > li > a {
  font-size: 0.85rem;
}
.submenu a {
  font-size: 0.82rem;
}
.phone-link a {
  font-size: 0.95rem;
}
.language-links a img
 {
    height: 12px;
}
.btn {
  padding: 12px 28px;
}
}

/* PROJECT GALLERY */
.project-gallery {
  padding: 80px 20px;
  background-color: var(--white);
}
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.gallery-container h2 {
  font-size: 2rem;
  color: var(--wood);
  margin-bottom: 10px;
}
.gallery-container p {
  color: var(--wood);
  margin: 20px 0 40px;
  font-size: 1.1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.gallery-item img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .project-gallery {
    padding: 60px 20px;
  }
  .gallery-container h2 {
    font-size: 1.75rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
}
@media (max-width: 450px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* INVESTOR SECTION */
.investor-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px;
}
.investor-logo-wrapper img {
  max-width: 500px;
  width: 100%;
  height: auto;
}
.investor-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}
.stat-item {
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  font-family: var(--body-font);
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}
.stat-item p {
  font-size: 1rem;
  color: var(--wood);
  margin: 0;
}
@media (max-width: 768px) {
  .investor-logo-wrapper {
    gap: 30px;
    align-items: unset;
  }
  .investor-stats {
    gap: 40px;
    align-items: unset;
  }
  .stat-item h3 {
    font-size: 2rem;
  }
  .stat-item p {
    font-size: 0.9rem;
  }
}
@media (max-width: 450px) {
  .investor-stats {
    flex-direction: column;
    gap: 25px;
  }
  .investor-logo-wrapper img {
    max-width: 300px;
  }
}

/* ========================================
   APARTMENTS TABLE SECTION - MODERAN DIZAJN
   ======================================== */
.apartments-section {
  padding: 60px 20px;
  background: var(--white);
}

.apartments-container {
  max-width: 1200px;
  margin: 0 auto;
}

.apartments-container h2 {
  text-align: left;
  margin-bottom: 15px;
}

.apartments-note {
  text-align: left;
  color: var(--wood);
  font-size: var(--p-size);
  margin: 30px 0 40px;
  font-style: italic;
  opacity: 0.8;
}

/* Filteri */
.apartments-filters {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 30px;
  background: #f8f6f3;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-family: var(--body-font);
  font-size: var(--p-size);
}

.filter-group select {
  padding: 10px 15px;
  border: 2px solid var(--khaki);
  border-radius: var(--border-radius);
  background: var(--white);
  color: var(--wood);
  font-family: var(--body-font);
  font-size: var(--p-size);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.filter-group select:hover {
  border-color: var(--gold);
}

.filter-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(169, 141, 94, 0.1);
}

/* Tabela - wrapper sa scroll */
.apartments-table-wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.apartments-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-family: var(--body-font);
}

.apartments-table thead {
  background: linear-gradient(135deg, var(--wood) 0%, #3a2f23 100%);
  color: var(--white);
}

.apartments-table thead th {
  padding: 16px 12px;
  text-align: left;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: var(--p-size);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.apartments-table tbody tr {
  border-bottom: 1px solid #e8e4df;
  transition: all 0.3s ease;
}

.apartments-table tbody tr:hover {
  background: #f8f6f3;
  transform: scale(1.005);
}

.apartments-table tbody tr:last-child {
  border-bottom: none;
}

.apartments-table tbody td {
  padding: 14px 12px;
  color: var(--wood);
  font-size: var(--body-font);
}

.apartments-table tbody td:first-child {
  font-weight: 600;
  color: var(--gold);
}

/* Cena kolona */
.apartments-table tbody td.price-cell {
  font-weight: 600;
  color: var(--price-color);
  font-size: 0.9rem;
}

/* Status badge */
.status-badge {
  display: inline-block;
  padding: 8px 22px;
  border-radius: var(--border-radius);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-slobodan {
  background: #155724;
  color: #d4edda;
}

.status-rezervisan {
  background: #fff3cd;
  color: #856404;
}

.status-prodat {
  background: #f8d7d7;
  color: #721c1c;
}

/* Button za plan */
.apartments-table .btn-plan {
  padding: 8px 16px;
  font-size: 0.8rem;
  white-space: nowrap;
  background-color: var(--wood);
  color: var(--white);
  border-radius: var(--border-radius);
  cursor: pointer;
}

/* Lightbox za plan */
.plan-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  cursor: pointer;
}

.plan-lightbox.show {
  display: flex;
}

.plan-lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .apartments-section {
    padding: 60px 15px;
  }

  .apartments-container h2 {
    font-size: 2rem;
  }

  .apartments-filters {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .filter-group select {
    width: 100%;
    min-width: unset;
  }

  .apartments-table thead th {
    padding: 12px 8px;
    font-size: 0.75rem;
  }

  .apartments-table tbody td {
    padding: 12px 8px;
    font-size: 0.75rem;
  }

  .apartments-table thead th:nth-child(2) {
    padding: 12px 4px;
    min-width: 35px;
  }

  .apartments-table tbody td:nth-child(2) {
    padding: 12px 4px;
  }

  .apartments-table tbody td.price-cell {
    font-size: 0.8rem;
  }

  .status-badge {
    padding: 5px 10px;
    font-size: 0.65rem;
  }

  .apartments-table .btn-plan {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .plan-lightbox img {
    max-width: 95%;
    max-height: 85%;
  }
}

/* Hide mobile elements */
.hide-mobile {
  display: none;
}

@media (min-width: 769px) {
  .hide-mobile {
    display: inline;
  }
}
/* Materials (Materijalizacija) Section */
.materials-section {
  padding: 60px 20px;
}
.materials-section.alt-bg {
  background: var(--wood, #f5f0e6);
}
.materials-container {
  max-width: 1200px;
  margin: 0 auto;
}
.materials-section h2,
.materials-intro,
.materials-note {
  color: var(--white, #fff);
}
.materials-intro {
  margin: 10px 0 30px;
  color: var(--white, #fff);
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.material-card {
  background: var(--white, #fff);
  border-radius: var(--border-radius, 12px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.08);
  padding: 22px;
  border: solid 3px var(--gold);
  outline: 2px solid var(--white);
}
.material-card h3 {
  margin-bottom: 8px;
  color: rgb(165, 137, 15);
}
.materials-note {
  margin-top: 24px;
  font-size: var(--p-size);
  color: var(--white, #fff);
}
.materials-section .material-card p {
  color: var(--wood, #4a3d2f);
}


/* Property Details Section */
.details-section {
  padding: 60px 20px;
}
.details-container {
  max-width: 1200px;
  margin: 0 auto;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.detail-card {
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--border-radius);
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.detail-value {
  margin: 0;
  margin-top: 10px;
}

/* Map Section */
.project-map {
  padding: 60px 20px;
}
.map-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.map-header h2 {
  margin: 0 0 6px;
}
.map-header p {
  margin: 0;
  color: var(--wood, #4a3d2f);
}
.map-embed iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--border-radius, 12px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

@media (max-width: 992px) {
  .materials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .map-header {
    align-items: flex-start;
  }
  .map-embed iframe {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
  .detail-card {
    padding: 16px;
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .detail-value {
    font-size: 0.95rem;
  }
}


@media (max-width: 992px) {
  .materials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
  .material-card {
    padding: 18px;
  }

}

/* Agent CTA Section */
.agent-cta-section {
  padding: 60px 20px;
}
.agent-cta-container {
  max-width: 1200px;
  margin: 0 auto;
}
.agent-cta-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: center;
}
.agent-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  max-width: 350px;
  display: flex;
  align-items: start;
  justify-content: center;
  max-height: 360px;
}
.agent-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.agent-info h2 {
  margin-bottom: 6px;
}
.agent-info p{
  line-height: 1.8;
}
.agent-title {
  font-size: var(--p-size);
  color: var(--khaki);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.agent-bio {
  margin-bottom: 30px;
}


@media (max-width: 992px) {
  .agent-cta-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .agent-cta-section {
    padding: 40px 16px;
  }
  .agent-title {
  font-size: .8rem;
  letter-spacing: 0.5px;
}
}

/* ========== FILTER SECTION ========== */
.filter {
  width: 100%;
  background: linear-gradient(135deg, #f5f1eb 0%, #fafbfc 100%);
  padding: 60px 20px;
}

.filter h6 {
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter-forma {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  border: solid 1px var(--tan);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-forma h2 {
  margin-bottom: 30px;
}

.filter-forma form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  align-items: flex-end;
}

/* Select inputs */
.filter-forma .country-filter,
.filter-forma .svrha-filter,
.filter-forma .tip-filter,
.filter-forma .struktura-filter,
.filter-forma .struktura-nekretnine,
.filter-forma .ostalo-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-forma .country-filter label,
.filter-forma .svrha-filter label,
.filter-forma .tip-filter label,
.filter-forma .struktura-filter label,
.filter-forma .struktura-nekretnine label,
.filter-forma .ostalo-filter label {
  color: var(--wood);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--body-font);
}

/* Number inputs */
.filter-forma input[type="number"],
.filter-forma input[type="search"] {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  color: var(--wood);
  background: var(--white-white);
  transition: all 0.3s ease;
}

.filter-forma input[type="number"]:focus,
.filter-forma input[type="search"]:focus {
  outline: none;
  border-color: var(--khaki);
  box-shadow: 0 0 0 3px rgba(179, 161, 132, 0.1);
}

.filter-forma input[type="number"]::placeholder,
.filter-forma input[type="search"]::placeholder {
  color: #aaa;
}

/* Select wrapper */
.filter-forma .country-filter,
.filter-forma .svrha-filter,
.filter-forma .tip-filter {
  position: relative;
}

.filter-forma select {
  width: 100%;
  padding: 12px 35px 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  color: var(--wood);
  background-color: var(--white-white);
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-forma select:focus {
  outline: none;
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(179, 161, 132, 0.1);
}

.filter-forma .select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search container */
.search-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-container input[type="search"] {
  width: 100%;
}

#suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  list-style: none;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#suggestions.active {
  display: block;
}

#suggestions li {
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
  color: var(--wood);
  font-family: var(--body-font);
}

#suggestions li:hover {
  background-color: #f5f1eb;
  color: var(--khaki);
}

/* Checkboxes - Struktura & Ostalo */
.struktura-nekretnine .struktura-dropdown,
.ostalo-filter .struktura-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  list-style: none;
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
  background: var(--white-white);
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.struktura-nekretnine,
.ostalo-filter {
  position: relative;
}

.struktura-dropdown.active,
.struktura-nekretnine .struktura-dropdown.active,
.ostalo-filter .struktura-dropdown.active {
  display: flex;
}

.struktura-dropdown li,
.struktura-nekretnine .struktura-dropdown li,
.ostalo-filter .struktura-dropdown li {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 100%;
  padding: 8px;
  background: var(--white-white);
  border-radius: var(--border-radius);
  border: 1px solid #eee;
  transition: all 0.2s ease;
}

.struktura-dropdown li:hover,
.struktura-nekretnine .struktura-dropdown li:hover,
.ostalo-filter .struktura-dropdown li:hover {
  border-color: var(--khaki);
  background-color: var(--white);
}

.struktura-dropdown input[type="checkbox"],
.struktura-nekretnine .struktura-dropdown input[type="checkbox"],
.ostalo-filter .struktura-dropdown input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--khaki);
  cursor: pointer;
  flex-shrink: 0;
}

.struktura-dropdown label,
.struktura-nekretnine .struktura-dropdown label,
.ostalo-filter .struktura-dropdown label {
  color: var(--wood);
  cursor: pointer;
  white-space: nowrap;
  flex: 1;
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 11px;
}

/* struktura-naziv heading - use body font */
.struktura-naziv {
  font-family: var(--body-font);
}

/* Toggle dropdown button */
.toggle-dropdown {
  position: relative;
  padding: 12px 15px;
  background: var(--white-white);
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--wood);
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: var(--body-font);
}

.toggle-dropdown:hover {
  border-color: var(--khaki);
  background-color: #fafbfc;
}

.toggle-dropdown svg {
  width: 18px;
  height: 18px;
  fill: var(--black);
  transition: transform 0.3s ease;
}
.min-cena,
.max-cena,
.min-povrsina,
.max-povrsina {
  width: 100%;
}

/* Submit button */
.filter-forma .submit {
  grid-column: 1 / -1;
  padding: 14px 40px;
  background: var(--teget);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--body-font);
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 100%;
  margin-top: 10px;
}

.filter-forma .submit:hover {
  background: var(--tan);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(179, 161, 132, 0.3);
}

.filter-forma .submit:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .filter {
    padding: 40px 16px;
    margin: 30px auto;
  }

  .filter-forma {
    padding: 30px 20px;
  }

  .filter-forma form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .filter-forma .submit {
    grid-column: 1;
    width: 100%;
    padding: 12px 20px;
  }

  .struktura-dropdown,
  .struktura-nekretnine .struktura-dropdown,
  .ostalo-filter .struktura-dropdown {
    gap: 8px;
    padding: 12px;
  }

  .toggle-dropdown {
    padding: 10px 12px;
  }
}
.levi-polukrug {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-left: 5px solid var(--white);
  outline: 2px solid var(--tan);
}
@media (max-width: 1024px) {
  .levi-polukrug {
  border-top-left-radius: unset;
  border-left: 0px solid var(--white);
}
}
@media (max-width: 480px) {
  .filter {
    padding: 30px 12px;
    margin: 20px auto;
  }

  .filter-forma {
    padding: 20px 15px;
  }

  .filter-forma input[type="number"],
  .filter-forma input[type="search"],
  .filter-forma select {
    font-size: 16px; /* Prevent iOS zoom */
  }

  .filter-forma .submit {
    padding: 12px 16px;
  }

  .struktura-dropdown,
  .struktura-nekretnine .struktura-dropdown,
  .ostalo-filter .struktura-dropdown {
    flex-direction: column;
    gap: 10px;
  }

  .struktura-dropdown li,
  .struktura-nekretnine .struktura-dropdown li,
  .ostalo-filter .struktura-dropdown li {
    flex: 1 0 100%;
  }
}
/* cta border  */
.cta-border {
  border: 2px solid var(--white);
}
.cta-border:hover {
  border: 2px solid var(--white);
  background-color: var(--khaki);
  color: var(--white);
}
.cta-border2 {
  border: 2px solid var(--white);
  background-color: var(--khaki);
}
.cta-border2:hover {
  border: 2px solid var(--white);
  background-color: var(--white);
  color: var(--wood);
}

