/* Blog Styles - Shared CSS for all blog posts and pages */

.stavebiny-nitra-block {
  font-family: 'DM Sans', sans-serif;
}

.stavebiny-nitra-block * {
  box-sizing: border-box;
}

:root {
  --primary-dark: #0a0a0a;
  --primary-light: #f9f9f9;
  --accent-warm: #ff5722;
  --accent-warm-light: #ff8a50;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-light: #888888;
  --border-subtle: #e0e0e0;
  --bg-subtle: #f5f5f5;
  --success: #059669;
}

.stavebiny-nitra-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.stavebiny-nitra-block h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem 0;
  color: var(--text-primary);
}

.stavebiny-nitra-block h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 3rem 0 1rem 0;
  color: var(--text-primary);
}

.stavebiny-nitra-block h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 2rem 0 0.75rem 0;
  color: var(--text-primary);
}

html {
  scroll-behavior: smooth;
}

.stavebiny-nitra-block p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 1rem;
}

.stavebiny-nitra-block a {
  color: var(--accent-warm);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-bottom: 2px solid transparent;
}

.stavebiny-nitra-block a:hover {
  color: var(--accent-warm-light);
  border-bottom-color: var(--accent-warm);
}

/* Hero Section */
.hero-nitra {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  border-radius: 12px;
}

.hero-nitra-content {
  padding: 0;
}

.hero-nitra::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-nitra h1 {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-warm) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-nitra p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
  max-width: 800px;
}

.btn-nitra {
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.btn-primary-nitra {
  background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-light) 100%);
  color: white !important;
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.35);
}

.btn-primary-nitra:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.45);
}

.btn-secondary-nitra {
  background: white;
  color: var(--accent-warm);
  border: 2px solid var(--accent-warm);
}

.btn-secondary-nitra:hover {
  background: var(--accent-warm);
  color: white;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent-warm-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  color: var(--primary-dark);
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--text-light);
}

.content-image {
  margin: 2rem 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin: 2rem 0;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.problem-item {
  background: var(--bg-subtle);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-warm);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.problem-item strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.problem-icon {
  font-size: 2.5rem;
  min-width: 50px;
  text-align: center;
}

.solution-box {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(255, 87, 34, 0.02) 100%);
  border: 2px solid var(--border-subtle);
  border-left: 5px solid var(--accent-warm);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.solution-box h4 {
  color: var(--accent-warm);
  margin-top: 0;
  font-weight: 600;
}

.solution-box ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

/* CTA Section */
.cta-nitra {
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.cta-nitra::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-nitra-content {
  position: relative;
  z-index: 2;
}

.cta-nitra h2 {
  color: white;
  margin-top: 0;
}

.cta-nitra p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--border-subtle);
}

.product-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: var(--primary-dark);
}

.product-card a {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--accent-warm);
  text-decoration: none;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
  }

  .problem-item {
    flex-direction: column;
    text-align: center;
  }

  .problem-icon {
    width: 100%;
  }

  .stavebiny-nitra-block h1 {
    font-size: 1.8rem;
  }

  .stavebiny-nitra-block h2 {
    font-size: 1.4rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .btn-nitra {
    width: 100%;
  }
}



  /* Štýly kompatibilné s WordPress */
  .stavebiny-nitra-block {
    font-family: 'DM Sans', sans-serif;
  }

  .stavebiny-nitra-block * {
    box-sizing: border-box;
  }

  :root {
    --primary-dark: #0a0a0a;
    --primary-light: #f9f9f9;
    --accent-warm: #ff5722;
    --accent-warm-light: #ff8a50;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-light: #888888;
    --border-subtle: #e0e0e0;
    --bg-subtle: #f5f5f5;
    --success: #059669;
  }

  .stavebiny-nitra-block img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }


  .stavebiny-nitra-block h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem 0;
    color: var(--text-primary);
  }

  .stavebiny-nitra-block h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 3rem 0 1rem 0;
    color: var(--text-primary);
  }

  .stavebiny-nitra-block h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    color: var(--text-primary);
  }
html {
  scroll-behavior: smooth;
}

  .stavebiny-nitra-block p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
  }

  .stavebiny-nitra-block a {
    color: var(--accent-warm);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-bottom: 2px solid transparent;
  }

  .stavebiny-nitra-block a:hover {
    color: var(--accent-warm-light);
    border-bottom-color: var(--accent-warm);
  }

  /* Hero Section */
  .hero-nitra {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-nitra-content {
    flex: 1;
  }

  .hero-nitra-video {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-nitra-video-container {
    width: 100%;
    max-width: 320px;
    display: flex;
    justify-content: center;
  }

  .hero-nitra-video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 267 / 476;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .hero-nitra::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-nitra h1 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
  }

  .hero-nitra p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 700px;
  }

  .cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .btn-nitra {
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
  }

  .btn-primary-nitra {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-light) 100%);
    color: white !important;
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.35);
  }

  .btn-primary-nitra:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 87, 34, 0.45);
  }

  .btn-secondary-nitra {
    background: white;
    color: var(--accent-warm);
    border: 2px solid var(--accent-warm);
  }

  .btn-secondary-nitra:hover {
    background: var(--accent-warm);
    color: white;
  }

  /* Features Grid */
  .features-nitra {
    padding: 3rem 0;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .feature-card {
    background: white;
    padding: 2.2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-warm), var(--accent-warm-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .feature-card:hover::before {
    transform: scaleX(1);
  }

  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  }

  .feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    margin-top: 0;
  }

  .feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-light);
  }

  /* Products Grid */
  .products-nitra {
    padding: 3rem 0;
    background: var(--bg-subtle);
    margin: 2rem 0;
    border-radius: 12px;
  }

  .products-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
  }

  .products-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .product-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--border-subtle);
  }

  .product-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .product-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .product-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: var(--primary-dark);
  }

  .product-card a {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--accent-warm);
    text-decoration: none;
  }

  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
  }

  /* Gallery Section */
  .gallery-nitra {
    padding: 3rem 0;
    margin: 2rem 0;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
  }

  .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.08);
  }

  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    color: white;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }

  .gallery-overlay h3 {
    color: white;
    margin: 0;
    font-size: 1rem;
  }

  /* Reviews Section */
  .reviews-nitra {
    padding: 3rem 0;
    background: var(--bg-subtle);
    margin: 2rem 0;
    border-radius: 12px;
  }

  .reviews-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-warm);
  }

  .review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
  }

  .review-stars {
    color: var(--accent-warm);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .review-card p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  .review-author {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
  }

  .review-source {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.5rem;
  }

  .reviews-platforms {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
  }

  .reviews-platforms p {
    color: var(--text-light);
    font-size: 0.9rem;
  }

  .reviews-platforms a {
    font-weight: 600;
  }

  /* Dopytový formulár bez produktu */
  .nitra-dopyt-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .nitra-dopyt-modal.is-open {
    display: flex;
  }

  .nitra-dopyt-content {
    background: white;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .nitra-dopyt-close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    border: 0;
    background: transparent;
    color: var(--text-light);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nitra-dopyt-close:hover {
    color: var(--accent-warm);
  }

  .nitra-dopyt-title {
    margin: 0 0 0.5rem 0;
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
  }

  .nitra-dopyt-subtitle {
    margin: 0 0 1.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
  }

  .nitra-dopyt-form {
    text-align: left;
  }

  .nitra-dopyt-field {
    margin-bottom: 1rem;
  }

  .nitra-dopyt-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
  }

  .nitra-dopyt-field input,
  .nitra-dopyt-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: white;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
  }

  .nitra-dopyt-field input:focus,
  .nitra-dopyt-field textarea:focus {
    outline: none;
    border-color: var(--accent-warm);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
  }

  .nitra-dopyt-field textarea {
    resize: vertical;
    min-height: 100px;
  }

  .nitra-dopyt-gdpr {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
  }

  .nitra-dopyt-gdpr input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
  }

  .nitra-dopyt-gdpr a {
    color: var(--accent-warm);
  }

  .nitra-dopyt-submit {
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-light) 100%);
    color: white;
    transition: all 0.3s ease;
    width: 100%;
  }

  .nitra-dopyt-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 87, 34, 0.35);
  }

  .nitra-dopyt-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .nitra-dopyt-success {
    color: var(--success);
    font-size: 1rem;
    text-align: center;
  }

  @media (max-width: 640px) {
    .nitra-dopyt-content {
      padding: 1.5rem;
    }

    .nitra-dopyt-title {
      font-size: 1.5rem;
    }

    .nitra-dopyt-close {
      right: 1rem;
      top: 0.8rem;
    }
  }

  /* Delivery Section */
  .delivery-nitra {
    padding: 3rem 0;
    margin: 2rem 0;
  }

  .delivery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .delivery-info h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
  }

  .delivery-info ul {
    list-style: none;
    padding: 0;
  }

  .delivery-info li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
  }

  .delivery-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
  }

  .delivery-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat-box {
    background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent-warm-light) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
  }

  .stat-box .number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  .stat-box p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
  }

  /* FAQ Section */
  .faq-nitra {
    padding: 3rem 0;
  }

  .faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .faq-item {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--accent-warm);
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateX(8px);
  }

  .faq-item strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }

  .faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
  }

  /* CTA Final */
  .cta-nitra {
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
  }

  .cta-nitra::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .cta-nitra-content {
    position: relative;
    z-index: 2;
  }

  .cta-nitra h2 {
    color: white;
    margin-top: 0;
  }

  .cta-nitra p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  /* Map & Image Section */
  .map-container {
    position: relative;
    width: 100%;
    height: 324px;
  }

  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
  }

  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
  }

  .location-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hero-nitra {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

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

    .delivery-content {
      grid-template-columns: 1fr;
    }

    .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 1rem;
    }

    .feature-card {
      padding: 1.5rem;
    }

    .cta-group {
      flex-direction: column;
    }

    .btn-nitra {
      width: 100%;
    }

    .stavebiny-nitra-block h1 {
      font-size: 1.8rem;
    }

    .stavebiny-nitra-block h2 {
      font-size: 1.4rem;
    }
  }

