/* ═══════════════════════════════════════════════════════════════
   CRYSTAL MC — MEDICINSKI.CSS
   Samo stili specifični za medicinski del.
   Vedno se nalaga SKUPAJ z: variables.css + base.css
   ═══════════════════════════════════════════════════════════════ */

/* ── NAV — MEDICINSKI ───────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 0;
}

.nav-logo { flex-shrink: 0; margin-right: 32px; }
.nav-logo img { height: 44px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  list-style: none;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--med-blue);
  background: var(--med-blue-pale);
}

.nav-link svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  padding-top: 6px;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  pointer-events: none;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown li a:hover {
  background: var(--med-blue-pale);
  color: var(--med-blue);
}

.nav-dropdown li a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--med-blue-light);
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.nav-dropdown li a:hover::before { opacity: 1; }

.nav-right { flex-shrink: 0; margin-left: auto; }

/* Gumb za preklop na estetski center */
.btn-aesthetic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--med-gold);
  border: 1.5px solid currentColor;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-aesthetic:hover {
  background: #fefaef;
  color: #8a6010;
}

.btn-aesthetic svg { width: 14px; height: 14px; }

/* Primarni gumb — medicinska barva */
.btn-primary {
  background: var(--med-blue);
  border-color: var(--med-blue);
  box-shadow: 0 4px 20px rgba(26,95,168,0.4);
}

.btn-primary:hover {
  background: var(--med-blue-light);
  border-color: var(--med-blue-light);
  box-shadow: 0 6px 24px rgba(26,95,168,0.5);
}

/* Sekundarni gumb — obroba */
.btn-secondary {
  background: transparent;
  border-color: var(--med-blue);
  color: var(--med-blue);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--med-blue-pale);
  border-color: var(--med-blue);
  color: var(--med-blue);
  box-shadow: none;
}

/* Section label — medicinska barva */
.section-label { color: var(--med-blue); }

/* ── HERO — MEDICINSKI ──────────────────────────────────────── */
.hero {
  background: var(--med-navy);
  background-image: url('/medicinski-center/assets/images/banner-medicinski.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,30,53,0.82) 35%, rgba(12,30,53,0.60) 65%, rgba(12,30,53,0.70) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,95,168,0.25);
  border: 1px solid rgba(43,127,212,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #93c5fd;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 span { color: #60a5fa; }

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #94a3b8;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-contact-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}

.hero-contact-item:hover { color: var(--white); }
.hero-contact-item svg { width: 17px; height: 17px; flex-shrink: 0; opacity: 0.7; }

/* Hero form card */
.hero-form-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-form-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--med-navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
  font-weight: 500;
}

.trust-item svg { width: 16px; height: 16px; color: #60a5fa; }

/* ── SPEC KARTICE ───────────────────────────────────────────── */
.specialties { padding: 88px 0; background: var(--white); }

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.spec-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  box-shadow: inset 4px 0 0 var(--med-blue);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.spec-card:hover {
  box-shadow: inset 4px 0 0 var(--med-blue), var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--med-blue-pale);
}

.spec-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.spec-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--med-blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-icon svg { width: 17px; height: 17px; color: var(--med-blue); }

.spec-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--med-navy);
  margin: 0;
}

.spec-text {
  font-size: 13.5px;
  color: var(--gray-400);
  line-height: 1.55;
  margin-bottom: 14px;
}

.spec-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--med-blue);
  transition: gap var(--transition);
}

.spec-link:hover { gap: 10px; }
.spec-link svg { width: 14px; height: 14px; }

.spec-doctors {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-doctor {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ── FOOTER — MEDICINSKI ────────────────────────────────────── */
.footer {
  background: var(--med-navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo { display: block; margin-bottom: 16px; }
.footer-logo img { height: 36px; width: auto; }

address.footer-contact-items { font-style: normal; }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links li a:hover { color: var(--white); }

.footer-map {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  line-height: 0;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-ddv {
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  margin-top: 8px;
  font-style: italic;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; opacity: 0.5; }
.footer-contact-item a:hover { color: var(--white); }

.footer-hours-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}

.footer-hours-row strong { color: var(--white); }

.footer-hours-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-hours-note a { color: #60a5fa; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.footer-social a:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); }
.footer-social svg { width: 16px; height: 16px; color: #475569; transition: color var(--transition); }
.footer-social a:hover svg { color: #94a3b8; }

.footer-parking {
  margin-top: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-parking svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; opacity: 0.4; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.28);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── PARTNERS BAR (nad footerjem) ───────────────────────────── */
.partners-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 32px 0;
}

.partners-bar-grid { display: flex; flex-direction: column; gap: 0; }

.partners-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.partners-row + .partners-row { border-top: 1px solid var(--gray-100); }

.partners-row-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  min-width: 160px;
  flex-shrink: 0;
}

.partners-row-logos { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.insurer-logo {
  height: 52px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow var(--transition);
}

.insurer-logo:hover { box-shadow: var(--shadow-sm); }
.insurer-logo img { height: 28px; width: auto; object-fit: contain; }

.partners-divider { border: none; border-top: 1px solid var(--gray-100); margin: 0; }

.footer-interreg {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer-interreg-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  text-align: right;
  line-height: 1.4;
}

.interreg-logo-box {
  height: 64px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.interreg-logo-box img { height: 44px; width: auto; max-width: 260px; object-fit: contain; }

/* ── HAMBURGER & MOBILE NAV ─────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  padding: 16px 24px 40px;
  border-top: 1px solid var(--gray-200);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.mobile-nav-links > li > a,
.mobile-nav-links > li > span {
  display: block;
  padding: 13px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

.mobile-nav-links > li > a:hover,
.mobile-nav-links > li > span:hover {
  background: var(--med-blue-pale);
  color: var(--med-blue);
}

.mobile-nav-submenu { list-style: none; display: none; flex-direction: column; gap: 1px; padding: 4px 0 8px 14px; }
.mobile-nav-submenu.open { display: flex; }

.mobile-nav-submenu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--gray-500);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-submenu li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--med-blue-light);
  flex-shrink: 0;
  opacity: 0.5;
}

.mobile-nav-submenu li a:hover { background: var(--med-blue-pale); color: var(--med-blue); }

.mobile-nav-divider { border: none; border-top: 1px solid var(--gray-200); margin: 12px 0; }

.mobile-nav-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

.mobile-nav-cta .btn-primary,
.mobile-nav-cta .btn-aesthetic {
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
}

/* ── MOBILE RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right { display: none; }
  .mobile-nav { display: block; }

  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 40px; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav { position: fixed; top: 0; left: 0; right: 0; width: 100%; }
  body { padding-top: var(--nav-height); }

  .hero { padding: 64px 0 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-ctas { flex-direction: column; }

  .specialties { padding: 56px 0; }
  .specialties-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .partners-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .partners-row-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; width: 100%; }
  .insurer-logo { height: 44px; padding: 6px 8px; width: 100%; }
  .insurer-logo img { height: 22px; }
  .footer-interreg { margin-left: 0; flex-direction: row; align-items: center; gap: 12px; width: 100%; }
  .interreg-logo-box img { height: 36px; }

  .cookie-banner { bottom: 70px; }
}

/* ═══════════════════════════════════════════════════════════════
   MANJKAJOČI STILI — SEKCIJE STRANI
   ═══════════════════════════════════════════════════════════════ */

/* ── SKUPNI SECTION HEADINGS ────────────────────────────────── */
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--med-navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
}

.section-header { margin-bottom: 56px; }

/* ── HERO — DODATNI STILI ───────────────────────────────────── */
.hero-cta-mobile-only { display: none; }
.hero-visual { position: relative; }

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-form label {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder { color: #475569; }

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: rgba(96,165,250,0.6);
  background: rgba(255,255,255,0.12);
}

.hero-form select option { background: var(--med-navy); color: var(--white); }

.hero-form .select-wrap { position: relative; }

.hero-form .select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #475569;
  pointer-events: none;
}

.hero-form textarea { resize: none; min-height: 72px; }

.btn-hero-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--med-blue);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(26,95,168,0.45);
  font-family: inherit;
  margin-top: 4px;
}

.btn-hero-submit:hover { background: var(--med-blue-light); transform: translateY(-1px); }
.btn-hero-submit svg { width: 16px; height: 16px; }

/* ── INFO STRIP ─────────────────────────────────────────────── */
.info-strip {
  background: var(--med-blue-pale);
  border-top: 1px solid #bfdbfe;
  border-bottom: 1px solid #bfdbfe;
  padding: 16px 0;
}

.info-strip-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--med-blue);
  font-weight: 500;
}

.info-strip-inner svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── PILLARS ────────────────────────────────────────────────── */
.pillars { padding: 88px 0; background: var(--gray-50); }

.pillars-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.pillars-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--gray-100);
}

.pillars-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pillars-image-mobile-only { display: none; }

.pillars-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.pillars-feature { display: flex; align-items: flex-start; gap: 14px; }

.pillars-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--med-blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillars-feature-icon svg { width: 20px; height: 20px; color: var(--med-blue); }

.pillars-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--med-navy);
  margin-bottom: 2px;
}

.pillars-feature span { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; }

/* ── SPEC CARD TEAM VARIANT ─────────────────────────────────── */
.spec-card--team {
  background: linear-gradient(135deg, var(--med-navy) 0%, var(--med-navy-mid) 100%);
  border-color: transparent;
  box-shadow: none;
}

.spec-card--team::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--med-blue), var(--med-teal));
  opacity: 1;
}

.spec-card--team .spec-icon { background: rgba(255,255,255,0.1); }
.spec-card--team .spec-icon svg { color: #93c5fd; }
.spec-card--team .spec-title { color: var(--white); }
.spec-card--team .spec-text { color: #94a3b8; }
.spec-card--team .spec-link { color: #60a5fa; font-weight: 700; }
.spec-card--team .spec-link:hover { color: #93c5fd; }

.spec-card--team:hover {
  background: linear-gradient(135deg, var(--med-navy-mid) 0%, #1e4a7a 100%);
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(12,30,53,0.4);
}

/* ── SPACES SECTION ─────────────────────────────────────────── */
.spaces-section { padding: 80px 0; background: var(--white); }

.spaces-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.spaces-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.spaces-gallery { display: grid; grid-template-columns: 1fr; gap: 12px; }

.spaces-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-200);
  aspect-ratio: 4 / 3;
}

.spaces-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}

.spaces-img:hover img { transform: scale(1.03); }
.spaces-img-mobile-1, .spaces-img-mobile-2 { display: none; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  padding: 88px 0;
  background: var(--med-navy);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.testimonials .section-label { color: #60a5fa; }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: #64748b; }

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

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--transition), border-color var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(43,127,212,0.35);
}

.testimonial-text {
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--med-blue), var(--med-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author-info strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--white); }
.testimonial-author-info span { font-size: 12px; color: #475569; }

/* ── BOOKING ────────────────────────────────────────────────── */
.booking { padding: 88px 0; background: var(--gray-50); }

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.booking-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }

.booking-feature { display: flex; align-items: flex-start; gap: 14px; }

.booking-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--med-blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-feature-icon svg { width: 18px; height: 18px; color: var(--med-blue); }

.booking-feature strong { display: block; font-size: 14px; font-weight: 600; color: var(--med-navy); margin-bottom: 2px; }
.booking-feature span { font-size: 13.5px; color: var(--gray-500); }
.booking-feature a { color: var(--med-blue); font-weight: 500; }
.booking-feature a:hover { text-decoration: underline; }

.booking-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.booking-form-heading { font-size: 20px; font-weight: 800; color: var(--med-navy); letter-spacing: -0.02em; margin: 0 0 6px; }
.booking-form-subheading { font-size: 14px; color: var(--gray-500); margin: 0 0 24px; }

.booking-form { display: flex; flex-direction: column; gap: 20px; }

/* ── FORM STILI ─────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-group--full { grid-column: 1 / -1; }

.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700); letter-spacing: 0.01em; }

.required { color: var(--med-blue); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--med-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,95,168,0.10);
}

.form-group input.invalid,
.form-group textarea.invalid,
.select-wrap.invalid select {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}

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

input[type="date"] { color: var(--gray-900); }
input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.4; cursor: pointer; }

.select-wrap { position: relative; }

.select-wrap select {
  width: 100%;
  padding: 11px 36px 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.select-wrap select:focus {
  border-color: var(--med-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,95,168,0.10);
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--gray-400);
  pointer-events: none;
}

.form-error { font-size: 12px; color: #dc2626; display: none; }
.form-group.show-error .form-error { display: block; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
}

.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

.checkbox-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 4px;
  background: var(--gray-50);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.checkbox-label input:checked ~ .checkbox-box { background: var(--med-blue); border-color: var(--med-blue); }

.checkbox-label input:checked ~ .checkbox-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.checkbox-label a { color: var(--med-blue); font-weight: 500; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--med-blue);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(26,95,168,0.35);
  font-family: inherit;
}

.btn-submit svg { width: 18px; height: 18px; }
.btn-submit:hover { background: var(--med-blue-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,95,168,0.45); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.form-success[hidden] { display: none; }
.form-success svg { width: 22px; height: 22px; color: #16a34a; flex-shrink: 0; margin-top: 1px; }
.form-success strong { display: block; font-size: 14px; color: #15803d; font-weight: 600; margin-bottom: 3px; }
.form-success span { font-size: 13px; color: #166534; }

/* ── LOCATION ───────────────────────────────────────────────── */
.location { padding: 88px 0; background: var(--gray-50); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: stretch;
}

.location-info { display: flex; flex-direction: column; }

.location-details { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }

.location-detail-item { display: flex; align-items: flex-start; gap: 14px; }

.location-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--med-blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-detail-icon svg { width: 18px; height: 18px; color: var(--med-blue); }

.location-detail-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--med-navy); margin-bottom: 2px; }
.location-detail-item span { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; }
.location-detail-item a { color: var(--med-blue); font-weight: 500; }
.location-detail-item a:hover { text-decoration: underline; }

.loc-hours-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--med-blue-pale);
  border-left: 3px solid var(--med-blue);
  padding: 8px 12px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 10px;
  font-size: 13.5px;
  color: var(--gray-700);
  gap: 12px;
}

.loc-hours-inline strong { color: var(--med-navy); white-space: nowrap; }

.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  min-height: 460px;
  position: relative;
}

.location-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── COOKIE BANNER ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.cookie-banner-text { flex: 1; min-width: 260px; }
.cookie-banner-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cookie-banner-text p { font-size: 12.5px; color: #475569; line-height: 1.6; }
.cookie-banner-text a { color: #60a5fa; text-decoration: underline; }

.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.btn-cookie-accept {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--med-blue);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
  white-space: nowrap;
}

.btn-cookie-accept:hover { background: var(--med-blue-light); }

.btn-cookie-reject {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-cookie-reject:hover { color: #94a3b8; border-color: rgba(255,255,255,0.2); }

/* ── MOBILE STICKY BAR ──────────────────────────────────────── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 98;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  padding: 12px 16px;
}

.mobile-sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--med-blue);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(26,95,168,0.4);
  transition: background var(--transition);
}

.mobile-sticky-bar a svg { width: 18px; height: 18px; }
.mobile-sticky-bar a:hover { background: var(--med-blue-light); }

/* ── RESPONSIVE DOPOLNITEV ──────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-inner { grid-template-columns: 1fr; gap: 48px; }
  .pillars-image { display: none; }
  .pillars-image-mobile-only { display: block; aspect-ratio: 3/4; }
  .pillars-image-mobile-only img { object-fit: cover; object-position: top center; }
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .location-map { min-height: 360px; }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .spaces-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── MOBILNI FLOATING CTA GUMB ──────────────────────────────── */
.mobile-contact-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--med-blue);
  border-radius: 40px;
  box-shadow: 0 6px 28px rgba(26,95,168,0.50);
  white-space: nowrap;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.mobile-contact-fab svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-contact-fab:hover { background: var(--med-blue-light); box-shadow: 0 8px 32px rgba(26,95,168,0.60); transform: translateX(-50%) translateY(-2px); }

@media (max-width: 768px) {
  .hero-cta-mobile-only { display: inline-flex; }
  .mobile-sticky-bar { display: block; }
  .hero-visual { display: none; }
  .mobile-contact-fab { display: inline-flex; }

  .pillars { padding: 56px 0; }
  .spaces-section { padding: 56px 0; }
  .testimonials { padding: 56px 0; }
  .booking { padding: 56px 0 96px; }
  .location { padding: 56px 0; }
  .location-map { min-height: 280px; }

  .spaces-gallery { display: none; }
  .spaces-img-mobile-1, .spaces-img-mobile-2 { display: block; margin: 16px 0; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 20px; }
  .section-title { font-size: clamp(24px, 6vw, 32px); }
  .section-header { margin-bottom: 36px; }

  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-banner-actions { justify-content: stretch; }
  .btn-cookie-accept, .btn-cookie-reject { flex: 1; text-align: center; }
  .cookie-banner { bottom: 70px; }
}
