.realizacie-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: rgba(26, 26, 26, 0.65);
  font-size: 0.95rem;
}

.realizacie-breadcrumbs a {
  color: #0b5fa5;
  text-decoration: none;
}

.realizacie-eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0b5fa5;
}

.realizacie-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.realizacie-text-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(11, 95, 165, 0.12);
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: 0 12px 32px rgba(15, 30, 53, 0.06);
}

.realizacie-text-card h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.2;
}

.realizacie-text-card p {
  margin: 0;
  color: inherit;
}

.realizacie-section-heading {
  margin: 0 0 1rem;
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.15;
  color: #1a1a1a;
}

.realizacie-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #1677d2, #0b5fa5);
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 6px 16px rgba(11,95,165,.35);
}

.realizacie-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(11,95,165,.45);
}

.realizacie-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: all .25s ease;
  text-decoration: none;
}

.realizacie-filter-btn:hover {
  border-color: #0b5fa5;
  color: #0b5fa5;
  background: rgba(11,95,165,.05);
}

.realizacie-filter-btn.active {
  background: linear-gradient(135deg, #1677d2, #0b5fa5);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(11,95,165,.35);
}


.realizacie-gallery-section,
.realizacie-text-section,
.realizacie-faq {
  margin-top: 2.5rem;
}

.realizacie-gallery-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.realizacie-gallery-summary {
  margin: 0;
  color: rgba(26, 26, 26, 0.74);
  font-size: 1.02rem;
}

.realizacie-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.realizacie-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: #f5f5f5;
  cursor: pointer;
}

.realizacie-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.realizacie-gallery-item:hover img {
  transform: scale(1.05);
}

.realizacie-faq-list {
  display: grid;
  gap: 1rem;
}

.realizacie-faq-item {
  background: #ffffff;
  border: 1px solid rgba(11, 95, 165, 0.12);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 10px 24px rgba(15, 30, 53, 0.05);
}

.realizacie-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #122033;
}

.realizacie-faq-item summary::-webkit-details-marker {
  display: none;
}

.realizacie-faq-item p {
  margin: 0.85rem 0 0;
  color: rgba(26, 26, 26, 0.82);
}

.realizacie-gallery-item.hidden {
  display: none;
}

#realizacie-loading {
  text-align: center;
  padding: 3rem;
  color: #666;
}

.realizacie-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.realizacie-lightbox.active {
  display: flex;
  opacity: 1;
}

.realizacie-lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.realizacie-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.realizacie-lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.realizacie-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s ease;
}

.realizacie-lightbox-close:hover {
  background: rgba(255, 255, 255, 1);
}

.realizacie-lightbox-close svg {
  width: 24px;
  height: 24px;
  stroke: #111;
}

.realizacie-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s ease;
}

.realizacie-lightbox-nav:hover {
  background: rgba(255, 255, 255, 1);
}

.realizacie-lightbox-nav svg {
  width: 24px;
  height: 24px;
  stroke: #111;
}

.realizacie-lightbox-prev {
  left: 20px;
}

.realizacie-lightbox-next {
  right: 20px;
}

.realizacie-lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: 2;
}

@media (max-width: 768px) {
  .realizacie-text-grid {
    grid-template-columns: 1fr;
  }

  .realizacie-text-card {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .realizacie-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  .realizacie-lightbox-nav {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
  }

  .realizacie-lightbox-nav svg {
    width: 22px;
    height: 22px;
  }

  .realizacie-lightbox-prev {
    left: 10px;
  }

  .realizacie-lightbox-next {
    right: 10px;
  }

  .realizacie-lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .realizacie-lightbox-close svg {
    width: 20px;
    height: 20px;
  }

  .realizacie-lightbox-counter {
    bottom: 10px;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

.realizacie-header-center {
  text-align: center;
}

.realizacie-header-center .section-content {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

