@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800;900&display=swap");

:root {
  --ink: #0d0f0f;
  --anthracite: #121414;
  --panel: #1a1c1c;
  --panel-strong: #242727;
  --steel: #38393a;
  --line: #444748;
  --line-light: rgba(255, 255, 255, 0.18);
  --text: #f4f4f0;
  --muted: #c4c7c7;
  --yellow: #ffdb3c;
  --yellow-strong: #ffc400;
  --blue: #0e98d3;
  --blue-dark: #075273;
  --red: #ff5a4e;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--anthracite);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(18, 20, 20, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-logo {
  width: clamp(152px, 15vw, 220px);
  max-width: 44vw;
  min-width: 132px;
  line-height: 0;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--yellow);
  color: #171400;
  border: 2px solid #171400;
  font-weight: 900;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  padding: 9px 10px;
  border: 1px solid var(--line-light);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line-light);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary {
  background: var(--yellow);
  color: #171400;
  box-shadow: 7px 7px 0 rgba(255, 219, 60, 0.18);
}

.btn-primary:hover {
  background: var(--yellow-strong);
  transform: translate(2px, 2px);
  box-shadow: 5px 5px 0 rgba(255, 219, 60, 0.18);
}

.btn-secondary {
  border-color: var(--blue);
  color: var(--white);
  background: rgba(14, 152, 211, 0.12);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 48px);
}

.section-light {
  background: #f6f6f1;
  color: #151717;
}

.section-light p,
.section-light .eyebrow {
  color: #4b5050;
}

.section-light .faq-item,
.section-light .about-block,
.section-light .info-card,
.section-light .bubble {
  color: var(--text);
}

.section-light .faq-item p,
.section-light .about-block p,
.section-light .info-card p,
.section-light .bubble p {
  color: #d5d8d8;
}

.section-light .price-card {
  border-color: #d9dbd2;
  background: #ffffff;
  color: #151717;
  box-shadow: 0 18px 42px rgba(13, 15, 15, 0.1);
}

.section-light .price-card p {
  color: #4b5050;
}

.section-light .price-card h3,
.section-light .price-card .price {
  color: #151717;
}

.section-light .price-card.featured {
  border-color: var(--yellow);
  box-shadow: 0 20px 46px rgba(13, 15, 15, 0.12), inset 0 0 0 2px rgba(255, 219, 60, 0.52);
}

.section-light .price-card .btn-secondary {
  border-color: var(--blue);
  background: rgba(14, 152, 211, 0.1);
  color: #151717;
}

.section-light .price-card .btn-secondary:hover {
  color: var(--blue);
}

.section-blue {
  background: linear-gradient(135deg, #0a3a52, #101316 68%);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 40px;
}

.eyebrow {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
}

.title-line {
  display: block;
}

.price-banner {
  position: relative;
  display: grid;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 18px 22px 18px 26px;
  border: 1px solid rgba(255, 219, 60, 0.28);
  border-radius: calc(var(--radius) - 10px);
  background:
    linear-gradient(135deg, rgba(255, 219, 60, 0.1), rgba(255, 219, 60, 0.02) 55%),
    linear-gradient(180deg, rgba(25, 30, 31, 0.98), rgba(13, 15, 15, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow);
}

.price-banner::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--yellow), rgba(255, 219, 60, 0.16));
}

.price-banner strong {
  color: var(--yellow);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-banner span {
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  max-width: 52ch;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 76px));
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(13, 15, 15, 0.9) 34%, rgba(13, 15, 15, 0.32) 56%, transparent 72%),
    linear-gradient(0deg, var(--ink) 0%, transparent 20%);
  pointer-events: none;
  z-index: 2;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.92) contrast(1.04);
}

/* ========================================================
   ZEMLJEVIDI — Leaflet.js interaktivni zemljevidi
   ======================================================== */
.leaflet-map-container {
  width: 100%;
  height: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.leaflet-map-container--small {
  max-height: 420px;
}

/* Tile filter — dark theme match */
.leaflet-tile {
  filter: grayscale(1) invert(0.88) sepia(0.26) saturate(1.25) hue-rotate(166deg) brightness(0.68) contrast(1.12) !important;
}

/* Remove Leaflet default attributions */
.leaflet-control-attribution { display: none !important; }

/* ── Container wrappers ── */
.real-map,
.hero-location-map {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.real-map {
  height: 420px;
  margin-top: 24px;
}

.hero-location-map {
  width: 100%;
  height: 480px;
}

.hero-real-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0d0f0f;
  z-index: 1;
}

.hero-real-map::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(68vw, 940px);
  z-index: 450;
  pointer-events: none;
  background: linear-gradient(90deg, #0d0f0f 0%, #0d0f0f 38%, rgba(13, 15, 15, 0.98) 54%, rgba(13, 15, 15, 0.72) 76%, rgba(13, 15, 15, 0.18) 92%, transparent 100%);
}

.hero-real-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 451;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(13, 15, 15, 0.9) 0%, transparent 22%),
    radial-gradient(circle at 75% 45%, rgba(255, 219, 60, 0.12), transparent 42%);
}

/* Left side dark overlay specifically for map slide so text is readable */
.hero-slide:nth-child(3) .hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(70vw, 980px);
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 44%, rgba(13, 15, 15, 0.98) 60%, rgba(13, 15, 15, 0.74) 78%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

/* Push Slovenia to the right so the western part sits behind the dark copy fade
   and Maribor appears close to the right edge. */
.hero-slide:nth-child(3) .leaflet-pane,
.hero-slide:nth-child(3) .leaflet-control-container {
  transform: translate(clamp(230px, 26vw, 350px), -120px);
}

.hero-slide:nth-child(3) .leaflet-container {
  background: #0d0f0f;
}

/* Fade overlay on maps */
.hero-location-map::after,
.real-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 15, 15, 0.1), rgba(13, 15, 15, 0.28)),
    radial-gradient(circle at 50% 50%, rgba(255, 219, 60, 0.12), transparent 44%);
  mix-blend-mode: multiply;
}

/* ── Custom yellow dot (Leaflet divIcon) ── */
.leaflet-yellow-dot {
  background: transparent !important;
  border: none !important;
}

.ldot {
  width: 16px;
  height: 16px;
  background: var(--yellow);
  border: 3px solid #171400;
  border-radius: 50%;
  position: relative;
  pointer-events: none;
}

.ldot::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.leaflet-gray-dot .ldot {
  width: 14px;
  height: 14px;
  background: #9aa09d;
  border: 3px solid #242827;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.16), 0 8px 18px rgba(0,0,0,0.38);
}

.leaflet-gray-dot .ldot::after {
  display: none;
}

.leaflet-yellow-dot--lg .ldot {
  width: 24px;
  height: 24px;
  border-width: 4px;
}

.leaflet-yellow-dot--lg .ldot::after {
  inset: -16px;
  border-width: 3px;
}

/* ── Map labels (tooltips) ── */
.map-label {
  background: rgba(13, 15, 15, 0.88) !important;
  border: 1px solid rgba(255, 219, 60, 0.38) !important;
  border-radius: 0 !important;
  color: var(--white) !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  padding: 5px 8px !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24) !important;
  white-space: nowrap !important;
}

.map-label::before {
  display: none !important;
}

.map-label--soon {
  background: rgba(34, 38, 37, 0.9) !important;
  border-color: rgba(180, 190, 185, 0.32) !important;
  color: #d4d9d6 !important;
}

.map-label--large {
  font-size: 15px !important;
  padding: 6px 10px !important;
}

.leaflet-marker-icon[data-location-url],
.leaflet-tooltip[data-location-url] {
  cursor: pointer;
}

@keyframes pulse {
  to { opacity: 0; transform: scale(1.9); }
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  min-height: min(820px, calc(100vh - 76px));
  max-width: 720px;
  padding: clamp(96px, 11vw, 152px) clamp(24px, 5vw, 80px) 144px;
  pointer-events: none;
}

.hero-content a,
.hero-content button {
  pointer-events: auto;
}

.hero h1 {
  margin: 16px 0 24px;
  max-width: 680px;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 1.1;
  text-transform: none;
}

.hero p {
  max-width: 590px;
  color: #e1e4e2;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.hero-proof span {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(13, 15, 15, 0.58);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.hero-dots button {
  width: 32px;
  height: 8px;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
  /* DODANO: Večje nevidno območje za prste */
  position: relative;
}

.hero-dots button::after {
  content: "";
  position: absolute;
  inset: -12px -8px; /* Razširi območje klika za 12px gor/dol in 8px levo/desno */
}

.hero-dots button.is-active {
  width: 48px;
  background: var(--yellow);
}

.hero-locations {
  position: absolute;
  left: clamp(18px, 5vw, 80px);
  right: clamp(18px, 5vw, 80px);
  bottom: 28px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-locations a,
.hero-locations span {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #f2f2ee;
}

.hero-locations a {
  background: var(--yellow);
  color: #171400;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.photo-card {
  position: relative;
  min-height: 260px;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080909;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.01) saturate(1) contrast(1.04);
  transition: transform 500ms ease;
}

.photo-card:hover img {
  transform: scale(1.06);
}

.photo-card h3 {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 112px 18px 18px;
  font-size: 20px;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 8px 16px rgba(0, 0, 0, 0.4);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 45%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0.4) 65%,
    rgba(0, 0, 0, 0.7) 75%,
    rgba(0, 0, 0, 0.9) 85%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  display: grid;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--yellow);
  transform: translateY(-10px);
}

.unit-letter {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #171400;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.price {
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
}

.price-copy-line {
  display: block;
}

.price-copy-line + .price-copy-line {
  margin-top: 4px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  background: var(--yellow);
  color: #171400;
  font-weight: 900;
  text-transform: uppercase;
}

.steps-grid,
.location-grid,
.contact-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step,
.info-card,
.bubble,
.faq-item,
.about-block,
.map-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.step,
.info-card,
.bubble {
  padding: 32px;
}

.step-number {
  color: var(--yellow);
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 34px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--yellow);
  clip-path: polygon(14% 52%, 34% 72%, 84% 18%, 100% 34%, 36% 100%, 0 66%);
}

.testimonial-shell {
  display: grid;
  gap: 24px;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 410px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.bubble {
  scroll-snap-align: start;
  color: var(--text);
  font-style: italic;
}

.bubble strong {
  display: block;
  margin-top: 16px;
  color: var(--yellow);
  font-style: normal;
}

.carousel-actions {
  display: flex;
  gap: 8px;
}

.icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-light);
  background: var(--panel-strong);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 24px 64px 24px 32px;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  font-size: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 219, 60, 0.7);
  color: var(--yellow);
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: rgba(255, 219, 60, 0.76);
}

.faq-item button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(255, 219, 60, 0.24);
}

.faq-answer {
  display: none;
  padding: 0 32px 32px;
}

.faq-answer p {
  max-width: 96ch;
  font-size: 18px;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.about-block {
  margin-top: 24px;
  padding: 32px;
  border-color: rgba(255, 219, 60, 0.5);
}

.about-block h2 {
  color: var(--white);
}

.contact-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.map-panel,
.form-panel {
  padding: 32px;
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.map-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-weight: 800;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.map-links a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-1px);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field,
.full {
  display: grid;
  gap: 8px;
}

.field span,
.full span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.full {
  grid-column: 1 / -1;
}

.form-panel .full {
  margin-top: 8px;
}

.form-panel button[type="submit"] {
  margin-top: 16px;
}

.form-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.contact-line {
  margin-top: 24px;
}

.address-line {
  margin-top: 8px;
  color: var(--text);
  font-weight: 800;
}

.map-panel p a {
  transition: color 0.2s ease;
}

.map-panel p a:hover,
.map-panel p a:focus-visible {
  color: var(--yellow);
}

label {
  color: var(--white);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line-light);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4f4f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

select option {
  background: var(--panel-strong);
  color: var(--text);
}

textarea {
  min-height: 120px;
  padding-top: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 219, 60, 0.2);
}

[aria-invalid="true"] {
  border-color: var(--red);
  outline-color: var(--red);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  margin-top: 16px;
  min-height: 24px;
  font-weight: 800;
}

.is-error {
  color: var(--red);
}

.is-success {
  color: var(--yellow);
}

.modal {
  width: min(94vw, 900px);
  max-width: 900px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--white);
  padding: 0;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.modal-inner {
  padding: 32px;
}

.unit-plan {
  display: grid;
  place-items: center;
  margin: 20px 0;
  border: 1px solid rgba(255, 219, 60, 0.24);
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(13, 15, 15, 0.08);
}

.unit-plan img {
  display: block;
  width: 100%;
  max-height: min(68vh, 640px);
  object-fit: contain;
}

.location-hero {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: min(640px, calc(100vh - 76px));
  padding-top: 24px;
}

.location-hero > div:first-child {
  max-width: 650px;
}

.location-hero p {
  max-width: 62ch;
  color: #d9dddd;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.location-hero img,
.location-hero .hero-location-map {
  height: 480px;
  width: 100%;
}

.location-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.location-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-page {
  padding-top: 118px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.legal-content h1 {
  margin-bottom: 26px;
  font-size: clamp(36px, 6vw, 68px);
}

.legal-content h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 24px;
}

.site-footer {
  padding: 54px clamp(18px, 4vw, 48px) 24px;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: var(--max);
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    padding: 24px;
    background: rgba(18, 20, 20, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 100;
  }

  .site-nav a {
    padding: 12px 0;
    font-size: 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions {
    justify-self: end;
  }

  .photo-grid,
  .price-grid,
  .steps-grid,
  .footer-grid,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .location-hero {
    grid-template-columns: 1fr;
  }

  .location-hero {
    min-height: auto;
    padding-top: 40px;
    gap: 32px;
  }

  .location-hero .hero-location-map {
    height: 380px;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand:not(.brand-logo) span:last-child {
    display: none;
  }

  .brand-logo {
    width: clamp(126px, 38vw, 158px);
    min-width: 112px;
    max-width: 40vw;
  }

  .brand-logo img {
    max-height: 40px;
  }

  .btn-small {
    padding: 0 12px;
  }

  .hero::after {
    background: linear-gradient(0deg, var(--ink) 0%, rgba(13, 15, 15, 0.96) 36%, rgba(13, 15, 15, 0.58) 66%, transparent 90%);
  }

  /* POPRAVLJENO: Naravna višina vsebine in prilagojena tipografija */
  .hero {
    min-height: 100svh; /* Uporaba modernih enot za mobilce */
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    min-height: auto;
    padding: 64px 20px 48px; /* Manjši padding zgoraj, da gre vsebina višje */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Vsebina se poravna bolj dol */
  }

  .hero h1 {
    font-size: clamp(34px, 8vw, 40px);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  /* Gumbi čez celo širino za boljši UX (Touch) */
  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* Lokacije niso več absolutne, ampak padejo naravno pod vsebino */
  .hero-locations {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0 20px 24px;
    padding-top: 24px;
    gap: 8px;
  }

  .hero-locations a,
  .hero-locations span {
    font-size: 11px;
    padding: 8px 12px;
    flex: 1 1 calc(50% - 8px); /* Naredi lep 2-stolpčni grid za lokacije */
    text-align: center;
  }

  /* DODANO: Optimizacija zemljevida v drsniku za manjše zaslone */
  #hero-map {
    height: 100% !important;
  }

  .hero-slide:nth-child(3) .leaflet-pane,
  .hero-slide:nth-child(3) .leaflet-control-container {
    transform: translate(72px, -22px);
  }

  .hero-real-map::before {
    inset: 0 auto 0 0;
    width: 100%;
    height: auto;
    background: linear-gradient(90deg, #0d0f0f 0%, #0d0f0f 48%, rgba(13, 15, 15, 0.92) 68%, rgba(13, 15, 15, 0.35) 88%, transparent 100%);
  }

  .hero-real-map::after {
    background:
      linear-gradient(0deg, rgba(13, 15, 15, 0.94) 0%, rgba(13, 15, 15, 0.28) 52%, transparent 72%),
      radial-gradient(circle at 54% 22%, rgba(255, 219, 60, 0.12), transparent 42%);
  }

  /* Keep place names visible on phones, but compact so they don't dominate. */
  .hero-slide:nth-child(3) .map-label {
    display: block !important;
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10px !important;
    padding: 3px 5px !important;
    opacity: 0.92;
  }

  .hero-slide:nth-child(3) .leaflet-marker-icon {
    opacity: 0.92;
  }

  .photo-grid,
  .price-grid,
  .steps-grid,
  .field-grid,
  .footer-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .photo-card {
    min-height: 220px;
  }

  .location-hero {
    padding-top: 24px;
  }

  .location-hero .hero-location-map,
  .real-map {
    height: 320px;
  }

  .location-facts span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
