@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
#body,
body,
html {
  overflow-x: hidden !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* Kompenzuje visinu fiksnog headera za sve skrol akcije */
}
/* ========================================================
   GLOBAL STYLES & TYPOGRAPHY
======================================================== */
:root {
  --font-primary: "Roboto", sans-serif;

  /* POTPUNO NOVI, UJEDNAČENI FLUIDNI FONTOVI (SAVRŠENI ZA SVE UREĐAJE) */
  --font-size-hero: clamp(
    2.5rem,
    5vw + 1rem,
    4.5rem
  ); /* Hero sekcija (40px - 72px) */
  --font-size-h1: clamp(
    2rem,
    4vw,
    3rem
  ); /* Glavni naslovi sekcija (32px - 48px) */
  --font-size-h2: clamp(
    1.5rem,
    3vw,
    2rem
  ); /* Podnaslovi i naslovi kartica (24px - 32px) */
  --font-size-lg: clamp(
    1.125rem,
    2vw,
    1.25rem
  ); /* Uvodni tekst, istaknuti paragrafi (18px - 20px) */
  --font-size-base: clamp(
    1rem,
    1.5vw,
    1.125rem
  ); /* Običan tekst, paragrafi (16px - 18px) */
  --font-size-sm: clamp(
    0.875rem,
    1vw,
    0.9375rem
  ); /* Sitniji tekst, detalji (14px - 15px) */
  --font-size-xs: 0.75rem; /* 12px (fiksno za ikonice/oznake) */

  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 800;

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-base: 1.6;
  --line-height-relaxed: 1.8;

  /* Buttons */
  --btn-font-size: var(--font-size-sm);
  --btn-padding-y: 12px;
  --btn-padding-x: 28px;
  --btn-border-radius: 8px;
  --btn-font-weight: var(--font-weight-bold);
  --btn-text-transform: uppercase;
  --btn-letter-spacing: 1px;
}

/* ========================================================
   PRILAGOĐAVANJE FONTA ZA MALE EKRANE (<500px)
======================================================== */
@media (max-width: 500px) {
  :root {
    --font-size-hero: 2rem; /* 32px (Znatno smanjeno sa min 40px, ali i dalje najveće) */
    --font-size-h1: 1.625rem; /* 26px (Smanjeno sa min 32px) */
    --font-size-h2: 1.25rem; /* 20px (Smanjeno sa min 24px) */
    --font-size-lg: 1rem; /* 16px (Smanjeno sa min 18px) */
    --font-size-base: 0.9375rem; /* 15px (Smanjeno sa min 16px) */
    --font-size-sm: 0.8125rem; /* 13px (Smanjeno sa min 14px) */
    --font-size-xs: 0.7rem; /* 11px (Smanjeno sa 12px) */
  }
  .col-img img {
    height: 250px !important;
    min-height: 0px !important;
  }
  #cars-gallery .car-image {
    height: 200px !important;
  }
}

/* Base Body Styles */
body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-base);
  color: #333;
  background-color: #fff;
}

/* Headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-black);
  line-height: var(--line-height-tight);
  color: #111;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1,
.h1 {
  font-size: var(--font-size-hero);
}
h2,
.h2 {
  font-size: var(--font-size-h1);
}
h3,
.h3 {
  font-size: var(--font-size-h2);
}
h4,
.h4 {
  font-size: var(--font-size-lg);
}
h5,
.h5 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
}
h6,
.h6 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
}

/* Paragraphs */
p {
  /* Base paragraph styles are in body, this is for overrides if needed */
  margin-top: 0;
  margin-bottom: 1em;
}

/* Generic Button Styling */
.btn,
.button,
input[type="submit"],
input[type="button"],
.wp-block-button__link,
.cta-buttons a,
.btn-black,
.btn-outline {
  display: inline-block;
  font-family: var(--font-primary) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  text-transform: var(--btn-text-transform) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  padding: var(--btn-padding-y) var(--btn-padding-x) !important;
  border-radius: var(--btn-border-radius) !important;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.2;
}

/* ========================================================
   PREMIUM LOADER
======================================================== */
#premium-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease; /* Transition for fade out */
}

.loader-content {
  position: relative;
}

.loader-logo {
  max-width: 150px;
  animation: flicker 1.5s infinite;
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* When loaded, fade out the whole loader */
body.loaded #premium-loader {
  opacity: 0;
  pointer-events: none; /* Make it non-interactive after fade */
}

/* Optional: Stop the flicker when fading out */
body.loaded #premium-loader .loader-logo {
  animation: none;
}

/* ========================================================
   RENT A CAR CUSTOM SECTIONS CSS (Prethodno index.css)
======================================================== */

/* Dodatno osiguranje da header ne prekrije bitne sekcije (posebno za Safari i starije pregledače) */
section, 
footer, 
#contactForm, 
#wlcmBcg, 
#cars-gallery, 
#features-slider-section, 
#about-us-row, 
#location-section {
  scroll-margin-top: 120px;
}

/* Generic Settings */
.section-main-title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-black);
  text-align: center;
  margin-bottom: 10px;
  color: #0a0a0a;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-regular);
}

/* Cars Gallery Section */
#cars-gallery {
  padding: 100px 20px 80px;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.car-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #eee;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.car-image {
  height: 220px;
  background: #f0f0f0;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.car-card:hover .car-image img {
  transform: scale(1.08);
}

.car-info {
  padding: 25px 20px;
  text-align: center;
}

.car-info h3 {
  margin: 0 0 8px;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-black);
  color: #111;
}

.car-price {
  color: #fdb913;
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-h2);
  margin-bottom: 20px;
}

.car-specs {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #555;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

.car-specs span {
  background: #f4f4f4;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #eaeaea;
}

/* About Us Row */
#about-us-row {
  padding: 100px 20px;
  background-color: #0a0a0a;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-3-cols {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-3-cols > div {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
}

.col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 50px;
  border: 1px solid #222222;
  background-color: #161616;
}

.col-text h2 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-black);
  margin-bottom: 25px;
  color: #fdb913;
}

.col-text p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: #c4c4c4;
}

/* Features & Slider */
#features-slider-section {
  padding: 80px 20px;
  overflow: hidden;
  background-color: #121212;
  color: #ffffff;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features-flex {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  gap: 60px;
}

.features-text {
  flex: 1;
  max-width: 600px;
}

.features-text h2 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-black);
  margin-bottom: 25px;
  color: #fdb913;
}

.features-text p {
  font-size: var(--font-size-base);
  color: #c4c4c4;
  line-height: var(--line-height-base);
  margin-bottom: 20px;
}

.features-text p:last-of-type {
  margin-bottom: 35px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: #e0e0e0;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0px;
  color: #fdb913;
  font-size: var(--font-size-base);
  font-weight: bold;
  line-height: 1;
}

.features-slider {
  flex: 1;
  position: relative;
  height: 450px;
}

.slider-track {
  display: flex;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
}

.slider-track img {
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.slider-track .slide.active {
  width: 60%;
  flex-shrink: 0;
}

.slider-track .slide.partial {
  width: 40%;
  flex-shrink: 0;
  opacity: 0.6;
  transform: scale(0.95);
}

/* Location Map */
#location-section {
  padding: 100px 20px;
  text-align: center;
  background-color: #121212;
  min-height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#location-section .section-main-title {
  color: #fdb913;
}

#location-section .section-subtitle {
  color: #c4c4c4;
}

/* Pre-Footer Yellow CTA */
#pre-footer-cta {
  background: #fdb913;
  position: relative;
  padding: 60px 40px;
  margin: 40px auto -60px auto;
  width: 92%;
  max-width: 1400px;
  z-index: 10;
  border-radius: 24px;
  transform: translateY(30px);
}

.cta-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-content {
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 50% !important;
}

.cta-content h2 {
  font-size: var(--font-size-h2);
  color: #0a0a0a;
  margin-bottom: 20px;
  font-weight: var(--font-weight-black);
  text-transform: uppercase;
}

.cta-content p {
  font-size: var(--font-size-base);
  color: #111;
  margin-bottom: 35px;
  line-height: var(--line-height-base);
  font-weight: var(--font-weight-medium);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-black {
  background: #0a0a0a;
  color: #fdb913 !important;
}

.btn-black:hover {
  background: #222;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: #0a0a0a !important;
  border: 2px solid #0a0a0a;
}

.btn-outline:hover {
  background: #0a0a0a;
  color: #fdb913 !important;
}

.cta-image {
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 50% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-image img {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .about-3-cols {
    flex-direction: column;
  }
  .features-flex {
    flex-direction: column;
  }
  .features-slider {
    width: 100%;
    height: 350px;
  }
  .slider-track {
    width: 100%;
    position: relative;
    overflow-x: auto;
    gap: 15px;
  }
  .slider-track .slide.active,
  .slider-track .slide.partial {
    width: 85%;
    flex-shrink: 0;
    opacity: 1;
    transform: none;
  }
  .cta-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-content {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
  }
  .cta-buttons {
    justify-content: center;
  }
  .cta-image {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
  .cta-image img {
    width: 100%;
    max-width: 500px;
    transform: none;
  }
}

@media (max-width: 768px) {
  #cars-gallery,
  #about-us-row,
  #features-slider-section,
  #location-section {
    padding: 60px 20px;
  }
  #pre-footer-cta {
    width: 95%;
    margin: 20px auto -40px auto;
    transform: translateY(20px);
    border-radius: 16px;
    padding: 50px 20px;
  }
}

/* ========================================================
   CUSTOM OVERRIDES & STYLES (Prethodno custom-index.css)
======================================================== */
#wlcmBcg .wp-block-cover {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  aspect-ratio: unset;
}

#wlcmBcg .hero-column-70 {
  flex-basis: 70%;
}

#wlcmBcg .hero-column-30 {
  flex-basis: 30%;
}

#wlcmBcg .wp-block-buttons {
  margin-top: 30px;
}

#contactForm {
  margin-top: 120px !important;
  padding-top: 60px;
  padding-right: 20px;
  padding-bottom: 60px;
  padding-left: 20px;
  min-height: auto;
  aspect-ratio: unset;
}

#location-section .section-main-title {
  margin-bottom: 20px;
}

.contact-svg-container svg {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

#wlcmBcg {
  position: relative !important;
  height: 700px !important;
  padding-top: 150px;
}
#wlcmBcg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/img/wlcmBcg.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.3) !important;
  z-index: -1;
}

#wlcmBcg h2 {
  color: #fff !important;
}
#wlcmBcg .has-regular-font-size {
  color: #f0f0f0 !important;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: var(--font-size-lg) !important;
}

#wlcmBcg .hero-subtitle {
  color: rgba(255, 255, 255, 0.95) !important;
  letter-spacing: 0.4px;
  line-height: 1.85;
  font-weight: 400;
  margin-top: 20px !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-size: var(--font-size-base) !important;
}

#wlcmBcg .secondParagraph {
  color: #f0f0f0;
  line-height: 1.8;
  font-size: var(--font-size-base);
}
#wlcmBcg .hero-additional-text {
  color: #f0f0f0;
  line-height: 1.8;
  font-size: var(--font-size-base);
}
#partnerWhy {
  height: auto !important;
  position: relative !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  background-image: none !important;
  overflow: hidden;
}

#partnerWhy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("/img/blackBcg.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transform: scaleX(-1);
  z-index: -1;
  display: block !important;
}
#partnerWhy p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Remove all spacing from Network section containers */
#partnerWhy .partners-network-container,
#partnerWhy .partners-network-section,
#partnerWhy .wp-block-group {
  margin-bottom: 0 !important;
}

/* Override inline styles on Network container - deep fix */
#partnerWhy .partners-network-container[style*="padding-bottom"] {
  padding-bottom: 150px !important;
}

/* Mobile: Remove top and bottom padding on Network container */
@media (max-width: 768px) {
  #partnerWhy .partners-network-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Override inline style padding-bottom on mobile */
  #partnerWhy .partners-network-container[style*="padding-bottom"] {
    padding-bottom: 0 !important;
  }

  /* Override inline style padding-top on mobile */
  #partnerWhy .partners-network-container[style*="padding-top"] {
    padding-top: 0 !important;
  }
}

/* Remove spacing from spacer element inside Network section */
#partnerWhy .wp-block-spacer {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
#aboutUsContainer ul {
  padding: 0 !important;
}
#aboutUsContainer li {
  display: flex !important;
  align-items: center;
  margin-bottom: 10px;
}
#aboutUsContainer li svg {
  width: 18px;
  height: 18px;
}
/* Remove bottom spacing from body and html */
html,
body {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove bottom spacing from wp-site-blocks */
.wp-site-blocks {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove ALL block gaps from main container - force sections to touch */
main.wp-block-group.is-layout-flow {
  --wp--style--block-gap: 0 !important;
}

main.wp-block-group.is-layout-flow > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Force wp-site-blocks container to have no line-height spacing */
.wp-site-blocks {
  line-height: 0 !important;
  font-size: 0 !important;
}

.wp-site-blocks > * {
  line-height: normal !important;
  font-size: initial !important;
}

/* Ensure Ekosistem and Contact have absolutely zero spacing */
#ekosistem-section {
  margin: 0 !important;
  padding-bottom: 0 !important;
  display: block !important;
}

#ekosistem-section .wp-block-cover__inner-container {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Force sections to touch - nuclear option */
section#ekosistem-section {
  display: block !important;
  margin: 0 !important;
  border: none !important;
  outline: none !important;
  line-height: 0 !important;
}

section#ekosistem-section {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

/* Ensure main container has no spacing issues */
main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: block !important;
  border: none !important;
  line-height: 0 !important;
}

/* Remove spacing from last child of main */
main > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Specifically target Network section as last child */
main > #partnerWhy,
main > #partnerWhy > *,
main > #partnerWhy .partners-network-container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Nuclear option - override WordPress core spacing */
:where(.wp-site-blocks) > main {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

:where(.wp-site-blocks) > footer {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

/* Force Ekosistem section to have fixed background for seamless transition */
#ekosistem-section .wp-block-cover__background {
  background-attachment: fixed !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

@media (max-width: 500px) {
  /* Layout modifications */
  #cars-gallery,
  #about-us-row,
  #features-slider-section,
  #location-section {
    padding: 40px 15px !important;
    min-height: auto !important;
  }
  .about-3-cols,
  .features-flex {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .col-text,
  .features-text {
    padding: 20px 15px !important;
  }
}

/* Language dropdown styling */
.language-dropdown {
  margin-left: 20px;
}

.language-selector {
  position: relative;
}

.language-select {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 25px 8px 12px;
  font-family: "Exo 2", sans-serif;
  font-size: var(--font-size-sm);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border-radius: 0;
  min-width: 60px;
}

.language-select:focus {
  outline: none;
  border-color: #fcb900;
}

.language-select:hover {
  color: #fcb900;
  border-color: #fcb900;
}

/* Custom dropdown arrow */
.language-selector::after {
  content: "▼";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: var(--font-size-xs);
  pointer-events: none;
}

.language-select:hover + .language-selector::after,
.language-selector:hover::after {
  color: #fcb900;
}

/* Style dropdown options */
.language-select option {
  background-color: #000;
  color: #fff;
  padding: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.language-select option:hover {
  background-color: #333;
  color: #fcb900;
}

/* Mobile menu container */
.mobile-menu-container {
  display: none;
  align-items: center;
  gap: 15px;
}

/* Mobile language dropdown */
.mobile-language {
  margin-left: 0;
}

/* Hide navigation on mobile */
@media (max-width: 767px) {
  header .wp-block-navigation {
    display: none !important;
  }

  /* Hide desktop language dropdown on mobile */
  .language-dropdown:not(.mobile-language) {
    display: none;
  }

  /* Show mobile menu container */
  .mobile-menu-container {
    display: flex;
  }

  /* Hamburger menu styles */
  .hamburger-menu {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    position: relative;
  }

  .hamburger-btn.active .hamburger-line:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    margin: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    margin: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin: 0;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-menu li {
    margin: 20px 0;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: var(--font-size-h2);
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    color: #fcb900;
    outline: none !important;
    box-shadow: none !important;
  }
}

/* Hide hamburger menu and mobile language on desktop */
@media (min-width: 768px) {
  .mobile-menu-container {
    display: none !important;
  }

  .hamburger-menu {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }

  .mobile-language {
    display: none !important;
  }
}

/* Remove border/outline from logo on click/focus */
.custom-logo-link:focus,
.custom-logo-link:active,
.custom-logo-link:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Responsive fix for #wlcmBcg height on small screens */
@media (max-width: 560px) {
  #wlcmBcg {
    height: auto !important;
    min-height: none !important;
    padding-top: 60px;
  }
}

/* Font size adjustments for #wlcmBcg hero section on screens below 500px */
@media (max-width: 500px) {
  /* Hero section - keep original sizes */
  #wlcmBcg {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 0 !important;
    min-height: 500px !important;
    height: 500px !important;
  }

  #wlcmBcg > .wp-block-cover {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Sakrij "Premium Rent" tekst ispod logoa na malim ekranima */
@media (max-width: 500px) {
  .custom-logo-link span,
  .footer-logo-link span {
    display: none !important;
  }
}

/* Safety fix for main container gap */
main {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
main::after {
  display: none !important;
  content: none !important;
}

/* Nuclear option - ensure zero gap between main closing and footer opening */
.wp-site-blocks > main:last-of-type {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.wp-site-blocks > main:last-of-type + footer {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
  padding-top: 0 !important;
}

/* Fix Max-Width for Hero Content */
#wlcmBcg .wp-block-cover__inner-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Buttons Restyling */
#wlcmBcg .wp-block-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px !important;
}

/* First Button (Primary) */
#wlcmBcg .wp-block-button:nth-child(1) .wp-block-button__link {
  background-color: #fdb913 !important;
  color: #0a0a0a !important;
}

#wlcmBcg .wp-block-button:nth-child(1) .wp-block-button__link:hover {
  background-color: #ffc94d !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(253, 185, 19, 0.3) !important;
}

/* Second Button (Secondary/Outline) */
#wlcmBcg .wp-block-button:nth-child(2) .wp-block-button__link {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-color: #fff !important;
  backdrop-filter: blur(5px);
}

#wlcmBcg .wp-block-button:nth-child(2) .wp-block-button__link:hover {
  background-color: #fff !important;
  color: #0a0a0a !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2) !important;
}

/* ============================================
   OUR PURPOSE SECTION - REDESIGNED
   ============================================ */

/* Section Container */
#values-section {
  background: var(--color-dark) !important;
  background-image: url("/img/blackBcg.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
}

.our-purpose-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header Styling */
.our-purpose-header {
  text-align: left;
  margin-bottom: 50px;
}

.purpose-label-wrapper {
  margin-bottom: 24px;
}

.purpose-label-en {
  display: block;
  font-size: var(--font-size-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fdb913;
  margin-bottom: 32px;
  position: relative;
  line-height: 1.2;
}

.purpose-label-en::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #fdb913;
  border-radius: 2px;
}

/* Content Layout */
.our-purpose-content {
  display: block;
  width: 100%;
}

.purpose-text-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
}

/* Main Text - Regular text */
.purpose-main-text {
  font-size: var(--font-size-lg);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Secondary Text - Larger, in focus */
.purpose-secondary-text {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
  padding-left: 16px;
  border-left: 3px solid #fdb913;
  max-width: 700px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .our-purpose-container {
    padding: 0 35px;
  }

  #values-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .our-purpose-header {
    margin-bottom: 50px;
  }

  .purpose-text-block {
    gap: 28px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .our-purpose-container {
    padding: 0 25px;
  }

  #values-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .our-purpose-header {
    margin-bottom: 40px;
  }

  .purpose-text-block {
    gap: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .our-purpose-container {
    padding: 0 20px;
  }

  #values-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .our-purpose-header {
    margin-bottom: 35px;
  }

  .purpose-text-block {
    gap: 20px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .our-purpose-container {
    padding: 0 18px;
  }
}

/* ===================================
   MODERN CAR CARDS
   =================================== */
#cars-gallery .cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  #cars-gallery .cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #cars-gallery .cars-grid {
    grid-template-columns: 1fr;
  }
}

#cars-gallery .car-card {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background: #ffffff !important;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease !important;
  display: flex;
  flex-direction: column;
}

#cars-gallery .car-card:hover {
  border-color: rgba(253, 185, 19, 0.6) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

#cars-gallery .car-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

#cars-gallery .car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#cars-gallery .car-card:hover .car-image img {
  transform: scale(1.05);
}

#cars-gallery .car-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#cars-gallery .car-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

#cars-gallery .car-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

#cars-gallery .car-header h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #2b2b2b;
  text-align: left;
  margin: 0;
  line-height: 1.3;
}

#cars-gallery .car-year {
  font-size: var(--font-size-sm);
  color: #666;
  font-weight: 500;
  text-align: left;
}

#cars-gallery .car-price-wrap {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#cars-gallery .car-price-inline {
  font-size: var(--font-size-h2);
  font-weight: 800;
  color: #fdb913;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

#cars-gallery .car-price-inline span {
  font-size: var(--font-size-sm);
  color: #555;
  font-weight: 600;
}

#cars-gallery .car-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 12px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: auto;
}

#cars-gallery .spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  font-size: var(--font-size-sm);
  font-weight: 500;
}

#cars-gallery .spec-item svg {
  color: #fdb913;
  flex-shrink: 0;
}

#cars-gallery .car-action {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

#cars-gallery .btn-book {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  background: transparent;
  border: 1px solid rgba(253, 185, 19, 0.5);
  color: #fdb913;
  padding: 12px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

#cars-gallery .btn-book:hover {
  background: #fdb913;
  color: #000;
  border-color: #fdb913;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(253, 185, 19, 0.2);
}

#cars-gallery .btn-info {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #1a1a1a;
  padding: 12px 5px;
  border-radius: 6px;
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#cars-gallery .btn-info:hover {
  background: #0a0a0a;
  color: #fdb913;
  border-color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 500px) {
  #cars-gallery .btn-book {
    width: 60%;
  }
  #cars-gallery .btn-info {
    width: 40%;
  }
}

/* ===================================
   VIEW ALL BUTTON
   =================================== */
#cars-gallery .view-all-wrap {
  text-align: center;
  margin-top: 50px;
}

#cars-gallery .btn-view-all {
  display: inline-block;
  background: #fdb913;
  color: #0a0a0a;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: var(--font-size-base);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

#cars-gallery .btn-view-all:hover {
  background: #0a0a0a;
  color: #fdb913;
  border-color: #fdb913;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(253, 185, 19, 0.3);
}

/* ===================================
   CAR INFO MODAL
   =================================== */
.car-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  /* Blago sivkasta pozadina sa mutnim efektom (blur) */
  background: rgba(30, 30, 30, 0.5);
  backdrop-filter: blur(5px);
}

.car-modal.active {
  opacity: 1;
  visibility: visible;
}

.car-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.car-modal-container {
  position: relative;
  background: #ffffff;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.car-modal.active .car-modal-container {
  transform: scale(1) translateY(0);
}

.car-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.1);
  color: #000;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: var(--font-size-h2);
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.car-modal-close:hover {
  background: #fdb913;
  color: #000;
  transform: rotate(90deg);
}

.car-modal-gallery {
  flex: 1;
  background: #f8f9fa;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-right: 1px solid #eaeaea;
}

.car-modal-main-img {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.car-modal-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.car-modal-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 5px 0;
}

.car-modal-thumb {
  width: 90px;
  height: 65px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  object-fit: cover;
}

.car-modal-thumb:hover {
  opacity: 0.8;
}

.car-modal-thumb.active {
  opacity: 1;
  border-color: #fdb913;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(253, 185, 19, 0.3);
}

.car-modal-details {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.car-modal-details h2 {
  font-size: var(--font-size-h2);
  font-weight: 800;
  margin: 0 0 5px 0;
  color: #1a1a1a;
  line-height: 1.2;
}

.car-modal-year {
  color: #777;
  font-size: var(--font-size-base);
  font-weight: 500;
  margin: 0 0 20px 0;
}

.car-modal-price {
  font-size: var(--font-size-h2);
  font-weight: 900;
  color: #fdb913;
  margin: 0 0 25px 0;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.car-modal-price span {
  font-size: var(--font-size-sm);
  color: #666;
  font-weight: 600;
}

.car-modal-desc {
  font-size: var(--font-size-base);
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.car-modal-specs-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin: 0 0 15px 0;
  color: #1a1a1a;
}

.car-modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

.car-modal-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: var(--font-size-sm);
  font-weight: 600;
  background: #f8f9fa;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.car-modal-specs .spec-item:hover {
  background: #fff;
  border-color: #fdb913;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.car-modal-specs .spec-item svg {
  color: #fdb913;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.car-modal-action {
  margin-top: auto;
}

.btn-book-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #0a0a0a;
  color: #fdb913;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: var(--btn-border-radius);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  text-transform: var(--btn-text-transform);
  text-decoration: none;
  letter-spacing: var(--btn-letter-spacing);
  transition: all 0.3s ease;
  border: 2px solid #0a0a0a;
}

.btn-book-modal:hover {
  background: #fdb913;
  color: #000;
  border-color: #fdb913;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(253, 185, 19, 0.3);
}

/* Scrollbar Styling for Modal */
.car-modal-details::-webkit-scrollbar {
  width: 6px;
}
.car-modal-details::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.car-modal-details::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.car-modal-details::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Mobile Responsive Modal */
@media (max-width: 900px) {
  .car-modal-container {
    flex-direction: column;
    max-height: 95vh;
    width: 95%;
  }
  .car-modal-gallery {
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }
  .car-modal-main-img {
    height: 300px;
  }
  .car-modal-details {
    padding: 25px;
  }
  .car-modal-price {
    margin-bottom: 15px;
  }
  .car-modal-desc {
    margin-bottom: 25px;
  }
  .car-modal-specs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 500px) {
  .car-modal-main-img {
    height: 200px;
  }
  .car-modal-details {
    padding: 20px;
  }
  .car-modal-thumbs {
    gap: 8px;
  }
  .car-modal-thumb {
    width: 70px;
    height: 50px;
  }
}

/* Centriranje Location sekcije i odvajanje od dna */
#location-section {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

@media (max-width: 768px) {
  #location-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

/* Info Blocks ispod mape */
.contact-info-blocks {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.info-block {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 20px;
}

.info-title {
  color: #ffffff;
  font-weight: 700;
  font-size: var(--font-size-sm);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-xs);
  margin-bottom: 15px;
}

.info-value {
  color: #fdb913 !important;
  font-weight: 700;
  font-size: var(--font-size-base);
  letter-spacing: 0.5px;
}
.info-value a {
  color: #fdb913 !important;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.info-value a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .contact-info-blocks {
    flex-direction: column;
    gap: 20px;
  }

  .info-block {
    padding: 10px;
  }
}

/* DOT MAP STYLES */
.dot-map-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  margin-top: 60px;
  margin-bottom: 80px;
  width: 100%;
  position: relative;
}

.dot-map-container {
  display: grid;
  grid-template-columns: repeat(55, 1fr);
  grid-template-rows: repeat(35, 1fr);
  gap: 4px;
  position: relative;
  padding: 20px;
}

.map-cell {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
  .dot-map-container {
    gap: 6px;
  }
  .map-cell {
    width: 9px;
    height: 9px;
  }
}

@media (min-width: 1024px) {
  .dot-map-container {
    gap: 8px;
  }
  .map-cell {
    width: 11px;
    height: 11px;
  }
}

.map-cell.active-dot {
  background-color: #777; /* Blago posvetljeno da lepše sija kroz 3D senku */
}

/* LOKACIJA MARKER NA MAPI */
.map-location-marker {
  position: absolute;
  /* Približna pozicija Srbije na 55x35 dot mapi (ako je potrebno, korigujte procente ispod) */
  top: 44%;
  left: 56%;
  z-index: 10;
}

.marker-pulse {
  width: 12px;
  height: 12px;
  background-color: #fdb913;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(253, 185, 19, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 185, 19, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(253, 185, 19, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 185, 19, 0);
  }
}

.marker-popup {
  position: absolute;
  bottom: 15px; /* Izdiže popup iznad pulsirajuće tačke */
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border: 1px solid rgba(253, 185, 19, 0.4);
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.marker-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}

.marker-flag {
  width: 30px;
  height: 22px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marker-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.marker-info strong {
  color: #fdb913;
  font-size: var(--font-size-sm);
  line-height: 1;
  font-weight: 700;
}

.marker-info span {
  color: #e0e0e0;
  font-size: var(--font-size-xs);
  line-height: 1;
}

/* ===================================
   CONTACT FORM SECTION
   =================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-heading {
  color: #000000;
  margin-bottom: 15px;
  font-size: var(--font-size-h1);
}

.contact-paragraph {
  color: #333333;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin-bottom: 40px;
}

.contact-phone-link {
  margin-bottom: 2rem;
}

.contact-phone-number {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #fdb913;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.3s ease;
}

.contact-phone-number:hover {
  opacity: 0.8;
}

.contact-svg-container {
  width: 100%;
  max-width: 600px;
}

.custom-contact-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.custom-contact-form input,
.custom-contact-form textarea {
  width: 100%;
  background: transparent !important;
  border: none;
  border-bottom: 1px solid #000000 !important;
  color: #000000 !important;
  padding: 12px 0;
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none !important;
  box-shadow: none !important;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.6) !important;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
  border-bottom-color: #fdb913 !important;
}

.custom-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Form Validation Styles */
.input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.field-error {
  color: #C51919;
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
  display: none;
  text-align: left;
}

.field-error.show {
  display: block;
}

.custom-contact-form input.error-border,
.custom-contact-form textarea.error-border {
  border-bottom-color: #C51919 !important;
}

.contact-submit-btn {
  background-color: #fdb913 !important;
  color: #000000 !important;
  border: 2px solid #fdb913 !important;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  text-transform: var(--btn-text-transform);
  letter-spacing: var(--btn-letter-spacing);
  border-radius: var(--btn-border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background-color: transparent !important;
  color: #000000 !important;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-submit-btn {
    width: auto;
    align-self: flex-start;
  }
}

/* ========================================================
   CLONE.CSS
======================================================== */

/* Sakrij WordPress "Skip to content" linkove */
.skip-link,
.screen-reader-text {
  display: none !important;
}

header * {
  box-sizing: border-box;
}

header .alignfull {
  padding: 15px 30px !important;
}

header .is-layout-flex {
  display: flex !important;
  align-items: center !important;
}

header .is-content-justification-space-between {
  justify-content: space-between !important;
}

header
  .wp-block-group.alignwide.is-content-justification-space-between.is-layout-flex {
  flex-wrap: nowrap !important;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

header .wp-block-group.alignwide > .wp-block-group.is-layout-flex:last-child {
  gap: 30px;
}

header .wp-block-site-logo {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  header .alignfull {
    padding: 10px 20px !important;
  }
}

/* Navigation horizontal styling for main menu */
.wp-block-navigation__container.is-responsive.wp-block-navigation {
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  gap: 32px; /* space between items */
  padding: 0;
  margin: 0;
  list-style: none;
}

.wp-block-navigation-item.wp-block-navigation-link {
  margin: 0;
  padding: 0;
}

.wp-block-navigation-item__content {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: #f0f0f0e5 !important;
  text-decoration: none;
  letter-spacing: 1.5px;
  padding: 8px 0;
  transition: color 0.2s;
  border: none;
  background: none;
  display: inline-block;
}

.wp-block-navigation-item__content:hover,
.wp-block-navigation-item__content:focus {
  color: #ffd600;
  text-decoration: none;
  outline: none !important;
  box-shadow: none !important;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 700px) {
  .wp-block-navigation__container.is-responsive.wp-block-navigation {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===================================
   HEADER STYLING - Language Dropdown & Mobile Menu
   =================================== */

/* Language dropdown styling */
.language-dropdown {
  margin-left: 20px;
}

.language-selector {
  position: relative;
}

.language-select {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 25px 8px 12px;
  font-family: "Exo 2", sans-serif;
  font-size: var(--font-size-sm);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border-radius: 0;
  min-width: 60px;
}

.language-select:focus {
  outline: none;
  border-color: #fcb900;
}

.language-select:hover {
  color: #fcb900;
  border-color: #fcb900;
}

/* Custom dropdown arrow */
.language-selector::after {
  content: "▼";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: var(--font-size-xs);
  pointer-events: none;
}

.language-select:hover + .language-selector::after,
.language-selector:hover::after {
  color: #fcb900;
}

/* Style dropdown options */
.language-select option {
  background-color: #000;
  color: #fff;
  padding: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.language-select option:hover {
  background-color: #333;
  color: #fcb900;
}

/* Mobile menu container */
.mobile-menu-container {
  display: none;
  align-items: center;
  gap: 15px;
}

/* Mobile language dropdown */
.mobile-language {
  margin-left: 0;
}

/* Hide navigation on mobile */
@media (max-width: 767px) {
  header .wp-block-navigation {
    display: none !important;
  }

  /* Hide desktop language dropdown on mobile */
  .language-dropdown:not(.mobile-language) {
    display: none;
  }

  /* Show mobile menu container */
  .mobile-menu-container {
    display: flex;
  }

  /* Hamburger menu styles */
  .hamburger-menu {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    position: relative;
  }

  .hamburger-btn.active .hamburger-line:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    margin: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    margin: 0;
  }

  .hamburger-btn.active .hamburger-line:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin: 0;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .mobile-menu li {
    margin: 20px 0;
  }

  .mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: var(--font-size-h2);
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    color: #fcb900;
    outline: none !important;
    box-shadow: none !important;
  }
}

/* Hide hamburger menu and mobile language on desktop */
@media (min-width: 768px) {
  .mobile-menu-container {
    display: none !important;
  }

  .hamburger-menu {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }

  .mobile-language {
    display: none !important;
  }
}

/* Footer Newsletter Styling */
.footer-newsletter {
  margin-top: 24px;
  margin-bottom: 24px;
}

.newsletter-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #ffd600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px 0;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  padding: 12px 16px;
  font-size: var(--font-size-sm);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #ffd600;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-input.error {
  border-color: #c51919;
  background: rgba(197, 25, 25, 0.1);
}

.newsletter-input::placeholder {
  color: #888;
}

.newsletter-submit {
  background: #ffd600;
  border: none;
  color: #000;
  padding: 12px 16px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  background: #ffed4e;
  transform: translateY(-2px);
}

.newsletter-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.newsletter-submit:disabled:hover {
  background: #ffd600;
  transform: none;
}

/* Newsletter feedback messages */
.newsletter-message {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: var(--font-size-sm);
  line-height: 1.4;
  animation: slideIn 0.3s ease;
  transition: opacity 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.newsletter-message-success {
  background-color: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.footer-contact-info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-location {
  font-size: var(--font-size-sm);
  color: #cccccc;
  margin: 0;
  font-weight: 400;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer-column h4 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: var(--font-size-sm);
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none !important;
  box-shadow: none !important;
}

.footer-column ul li a:hover,
.footer-column ul li a:focus {
  color: var(--color-primary);
  transform: translateX(4px);
  outline: none !important;
  box-shadow: none !important;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd600;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.footer-email {
  color: #cccccc;
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color 0.3s ease;
  outline: none !important;
  box-shadow: none !important;
}

.footer-email:focus {
  outline: none !important;
  box-shadow: none !important;
}

.footer-email:hover,
.footer-email:focus {
  color: var(--color-primary);
  outline: none !important;
  box-shadow: none !important;
}

.footer-brand .footer-email {
  font-size: var(--font-size-sm);
  color: #cccccc;
}

.footer-bottom {
  padding-top: 40px;
}

.footer-accent-line {
  width: 100px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright-container {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: #888888;
  margin: 0;
}

.footer-dev {
  font-size: var(--font-size-xs);
  color: #a0a0a0;
  margin: 0;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-dev:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(253, 185, 19, 0.3);
}

@media (min-width: 769px) {
  .footer-dev::before {
    display: none;
  }
}

.footer-dev a {
  color: #fdb913;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  margin-left: 4px;
}

.footer-dev a:hover {
  color: #fff;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #cccccc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none !important;
  box-shadow: none !important;
}

.footer-social-icon svg {
  width: 100%;
  height: 100%;
}

.footer-social-icon[aria-label="Instagram"] svg {
  width: 85%;
  height: 85%;
}

.footer-social-icon:hover,
.footer-social-icon:focus {
  color: var(--color-primary);
  transform: translateY(-2px);
  outline: none !important;
  box-shadow: none !important;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px 30px;
  }

  .footer-top {
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .newsletter-input {
    padding: 12px 14px;
  }

  .newsletter-submit {
    padding: 12px 16px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-copyright-container {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================
   UAV MAINTENANCE & SUPPORT SECTION
   ============================================ */

.uav-maintenance-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.uav-maintenance-container {
  max-width: 1200px;
  margin: 0 auto;
}

.uav-maintenance-header {
  text-align: center;
  margin-bottom: 60px;
}

.uav-maintenance-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  color: #fdb913;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.uav-maintenance-subtitle {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.uav-maintenance-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.uav-maintenance-image {
  flex: 1;
  position: relative;
}

.uav-maintenance-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (min-width: 500px) and (max-width: 1024.99px) {
  .uav-maintenance-image img {
    height: 300px;
    object-fit: cover;
  }
}

.uav-maintenance-text {
  flex: 1;
  color: #ffffff;
}

.uav-maintenance-text p {
  font-size: var(--font-size-base);
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
}

.uav-maintenance-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.uav-maintenance-features li {
  font-size: var(--font-size-base);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative;
  color: #ffffff;
  opacity: 0.85;
}

.uav-maintenance-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #fdb913;
  font-size: 18px;
  font-weight: bold;
}

.uav-maintenance-features li strong {
  color: #fdb913;
  font-weight: 600;
}

.uav-maintenance-cta {
  margin-top: 40px;
}

.uav-cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #fdb913;
  color: #0a0a0a;
  font-size: var(--font-size-base);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
}

.uav-cta-button:hover {
  background: #ffc94d;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(253, 185, 19, 0.3);
}

.media-careers-section {
  margin-bottom: 0;
}

.media-careers-section .uav-maintenance-text a {
  color: #fdb913;
  text-decoration: none;
  transition: color 0.3s ease;
}

.media-careers-section .uav-maintenance-text a:hover {
  color: #ffc94d;
  text-decoration: underline;
}

/* === RESPONSIVE DESIGN === */

@media (max-width: 1024px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
  }

  .hero-split-right {
    min-height: 400px;
  }

  .sta-radimo-block {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "image" !important;
  }

  .partners-network-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .partners-network-right {
    justify-content: flex-start;
  }

  .partners-logos-section {
    justify-content: flex-start;
  }

  .partners-logos-grid {
    max-width: 100%;
    width: 100%;
    gap: 20px;
  }

  .partner-logo {
    max-height: 180px;
  }

  .uav-maintenance-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image-column {
    position: relative;
    top: 0;
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-main-image {
    height: 500px;
    object-fit: cover;
  }

  .about-columns {
    gap: 50px;
    flex-direction: column;
  }

  .about-columns .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-split-left {
    padding: 60px 30px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-btn {
    text-align: center;
  }

  .ekosistem-content {
    padding: 0;
  }

  .ekosistem-cards {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .ekosistem-card {
    margin-bottom: 30px;
  }

  .sta-radimo-section {
    padding: 80px 30px !important;
  }

  .sta-radimo-grid {
    gap: 80px;
  }

  .values-section {
    padding: 80px 30px !important;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partners-network-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .partners-network-right {
    justify-content: flex-start;
  }

  .partners-logos-section {
    justify-content: flex-start;
  }

  .partners-logos-grid {
    max-width: 100%;
    width: 100%;
  }

  .partner-logo {
    max-height: 160px;
  }

  .about-section {
    padding: 80px 30px 80px 30px !important;
  }

  .about-main-grid {
    gap: 50px;
  }

  #aboutUsContainer .about-title {
    font-size: clamp(20px, 3.5vw, 28px);
  }

  #aboutUsContainer .about-text {
    font-size: 16px;
  }

  .about-divider {
    margin: 40px 0 20px 0;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .timeline-dot {
    width: 16px;
    height: 16px;
  }

  .timeline-line {
    width: 2px;
    min-height: 100px;
  }

  .timeline-label {
    font-size: 11px;
    padding: 4px 12px;
  }

  .timeline-heading {
    font-size: 20px;
  }

  .timeline-text {
    font-size: 14px;
  }

  .contact-inner {
    padding: 60px 20px;
  }

  .uav-maintenance-section {
    padding: 60px 20px !important;
  }

  .uav-maintenance-content {
    flex-direction: column;
    gap: 30px;
  }
}

/* === HERO MAIN TITLE STYLES === */
.hero-main-title,
.hero-main-title strong {
  font-size: var(--font-size-hero);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* ============================================
   YOUTUBE TOAST NOTIFICATION STYLES
   ============================================ */

.premium-toast {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(253, 185, 19, 0.3);
  border-radius: 8px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(253, 185, 19, 0.1);
  backdrop-filter: blur(10px);
  min-width: 320px;
  max-width: 400px;
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.premium-toast-header {
  background: #0a0a0a !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  color: #fdb913 !important;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px 8px 0 0;
}

.premium-toast-header strong {
  color: #fdb913;
  font-size: var(--font-size-sm);
  letter-spacing: 0.3px;
}

.premium-toast-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.premium-toast-header .btn-close:hover {
  opacity: 1;
}

.premium-toast-body {
  color: #f0f0f0;
  padding: 16px;
  font-size: var(--font-size-sm);
  line-height: 1.6;
  background: transparent;
}

#youtube-toast-container {
  z-index: 9999;
}

@media (max-width: 480px) {
  .premium-toast {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 0 20px 20px 20px;
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fdb913;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.3s;
  z-index: 1000;
}

.scroll-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===================================
   MODERN SITE FOOTER STYLING (FINAL & CORRECT - OVERRIDE)
   =================================== */

.site-footer {
  background-color: #0a0a0a;
  color: #f0f0f0;
  position: relative;
  font-family: "Roboto", sans-serif;
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-cta {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  transform: translateY(-80px);
  margin-bottom: -40px;
  position: relative;
  z-index: 20;
}

.cta-box {
  background: linear-gradient(135deg, #fdb913 0%, #d49a0e 100%);
  border-radius: 20px;
  padding: 0 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-text {
  flex: 0 0 50%;
  position: relative;
  z-index: 2;
  padding-right: 60px;
}

.cta-text h2 {
  color: #000;
  font-size: clamp(
    1.75rem,
    3.5vw,
    2.25rem
  ); /* Blago povećano sa originalnog h2 (24px-32px) na 28px-36px */
  font-weight: 800;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.cta-text p {
  color: rgba(0, 0, 0, 0.8);
  font-size: var(
    --font-size-base
  ); /* Povećano sa sm (14px) na base (16px-18px) */
  line-height: 1.6;
  margin: 0 0 30px 0;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  gap: 15px;
}

.cta-btn-solid,
.cta-btn-outline {
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: var(--font-size-base); /* Povećan font na dugmićima */
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  display: inline-block;
  text-align: center;
}

.cta-btn-solid {
  background-color: #000;
  color: #fdb913 !important;
  border: 2px solid #000;
}

.cta-btn-solid:hover {
  background-color: transparent;
  color: #000 !important;
}

.cta-btn-outline {
  background-color: transparent;
  color: #000 !important;
  border: 2px solid #000;
}

.cta-btn-outline:hover {
  background: #000;
  color: #fdb913 !important;
}

.cta-visual {
  flex: 0 0 50%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 180px;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.5s ease;
  transform-origin: right;
  transform: scale(0.9);
}

.footer-main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.footer-grid-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-column h5 {
  color: #fff;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
}

.footer-column h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 30px;
  height: 2px;
  background-color: #fdb913;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: #aaa;
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #fdb913;
  transform: translateX(5px);
}

.footer-newsletter-form {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.footer-newsletter-form input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  color: #fff;
  border-radius: 6px 0 0 6px;
  outline: none;
  transition: border-color 0.3s;
}

.footer-newsletter-form input:focus {
  border-color: #fdb913;
}

.footer-newsletter-form button {
  background-color: #fdb913;
  border: none;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-social-icons {
  display: flex;
  gap: 12px;
}

@media (max-width: 1024px) {
  .footer-top-cta,
  #pre-footer-cta {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    min-height: 0;
  }
  .cta-text {
    padding-right: 0;
  }
  .cta-actions {
    justify-content: center;
  }
  .cta-visual {
    margin-top: 40px;
    justify-content: center;
    width: 100%;
    max-width: 350px;
  }
  .cta-visual img {
    transform: scale(1);
  }
  .footer-grid-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
}

@media (max-width: 576px) {
  .footer-grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ========================================================
   PREMIUM SCROLL ANIMATIONS
======================================================== */
.reveal {
  opacity: 0;
  /* Uklonjen visibility i will-change za savršeno tečno kretanje */
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
}

.fade-in-up {
  transform: translateY(70px); /* Povećano da bi pokret bio uočljiviji odozdo */
}
.fade-in-up.active {
  transform: translateY(0);
}

.fade-right {
  transform: translateX(-70px); /* Povećano da bi pokret bio uočljiviji sleva */
}
.fade-right.active {
  transform: translateX(0);
}

.fade-left {
  transform: translateX(70px); /* Povećano da bi pokret bio uočljiviji zdesna */
}
.fade-left.active {
  transform: translateX(0);
}

.zoom-in {
  transform: scale(0.85); /* Povećan raspon zuma za dramatičniji ulaz */
}
.zoom-in.active {
  transform: scale(1);
}

/* Delays for staggered animations */
.reveal-delay-100 {
  transition-delay: 0.1s !important;
}
.reveal-delay-150 {
  transition-delay: 0.15s !important;
}
.reveal-delay-200 {
  transition-delay: 0.2s !important;
}
.reveal-delay-250 {
  transition-delay: 0.25s !important;
}
.reveal-delay-300 {
  transition-delay: 0.3s !important;
}
.reveal-delay-400 {
  transition-delay: 0.4s !important;
}
.reveal-delay-500 {
  transition-delay: 0.5s !important;
}
