/* Zbalit vsetko:   Ctrl + K, Ctrl + 0  (nula é, nie pismeno O)*/
/* Rozbalit vsetko: Ctrl + K, Ctrl + J */

/* test */
/* *{ outline:1px solid red; } */

/* ------------------------------------------ TEXTY */

/*
NADPIS h3: 
  font-size: 26px;
  karty: 20px
  font-weight: 600;
  karty: 700
  color: #2f4454;
  margin-bottom: 18px;

BEZNY TEXT p:
  font-size: 17px;
  line-height: 1.8;
  karty: 1.7
  color: #555;
  karty: color: #5a6778;
  margin-bottom: 30px;

FARBY
  #1f6feb   bubliny modra
  #006fa3;
  #f4511e    bubliny pomarancova
*/



/* ================= ================= ================= ================= ================= pre cely web -- */

* {                           /* plati pre vsetky HTML prvky na stranke */
  margin: 0;                  /* zrusi vsetky vonkajsie okraje prvkov */
  padding: 0;                 /* zrusi vsetky vnutorne odsadenia prvkov */
  box-sizing: border-box;     /* sirka a vyska prvku zahrna padding aj border */
}

html{
  scroll-behavior: smooth;    /* plynuly scroll */
}



/* ------------------------------------------ obsah stranky */
.page-content {
  margin: 0 auto;      /* vycentruje obsah */
  padding-top: 90px;   /* 120px posunie obsah pod hlavicku podla vysky headeru */
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
}

a:focus-visible, button:focus-visible {
  outline: 3px solid #2F6DE1;
  outline-offset: 3px;
}



/* ================= ================= ================= ================= ================= Skryta hlavicka / Top Bar -- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  color: #fff;
  z-index: 1000;
  padding: 0;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  /* background: #1e90ff; povodne pozadie */
  background: #0083C1;

}

.top-bar.hide {
  transform: translateY(-100%);
}

/* na vzdelavacie ucely: Uvidis presne, kde konci .top-bar-inner a ci sa padding meni */
/*.top-bar-inner { outline: 2px solid yellow; } */

.top-bar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  height: 36px;              /* dolezite */
  align-items: center;       /* toto centrovanie */
}

.top-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-contact {
  display: flex;               /* polozky vedla seba */
  align-items: center;
  gap: 40px;                   /* medzera medzi telefonom a emailom */
}

.top-contact a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;

  /* nove kod */
  position: relative;
  padding: 4px 10px;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* hover */
.top-contact a:hover {
  color: #0083C1;
  background-color: white;
}

.top-contact a:hover::after {
  width: 100%;
}

.top-social a {
  width: 28px;
  height: 28px;
  background: white;
  color: #0083C1;
  text-decoration: none;    /* a podciarkuje, toto zrusi podciarknutie */
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.top-social a:hover {
  transform: scale(1.1);
  background: #ffb098;
}

.top-contact a i {
  font-size: 16px;
}

.top-social a:hover i {
  animation: coinFlip 0.4s linear;
}

/* ------------------------------------------ Animacie */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes slideshow-fade{
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes coinFlip {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); } /* 2x otočenie */
}

/* ================= ================= ================= ================= ================= Hlavna hlavicka / Main Header -- */
.main-header {
  position: fixed;
  top: 36px; /* presne vyska hornej hlavicky */
  left: 0;
  width: 100%;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: top 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 6px 10px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 10px;
  border-radius: 12px;

  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.logo img {
  height: 38px;
  display: block;
}

.logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px #0083C1;
}

.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu > a,
.nav-menu > .dropdown > a {
  color: #222;
  text-decoration: none;

  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.35px;

  position: relative;
  z-index: 1;

  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-menu > a::before,
.nav-menu > .dropdown > a::before {
  content: "";
  position: absolute;

  inset: -6px -12px;
  background: transparent;
  border-radius: 10px;

  z-index: -1;
  transition: background-color 0.25s ease;
}

.nav-menu > a:hover,
.nav-menu > .dropdown > a:hover {
  color: white;
  transform: scale(0.95);
}

.nav-menu > a:hover::before,
.nav-menu > .dropdown > a:hover::before {
  background: #0083C1;
}



/* ----------------------------------------------------------------------------------------- Hlavicka zabalene menu / Dropdown -- */
/* Dropdown wrapper */
.nav-item.dropdown {
  position: relative;
}

/* Skryte menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);

  background: white;
  min-width: 240px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  padding: 12px 0;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;

  z-index: 9999;
}

/* Zobrazenie pri hover/focuse */
.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Polozky v dropdown */
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 18px;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #0083C1;
  color: white;
  
}

body.menu-open .cta-bubble {
  opacity: 0;
  pointer-events: none;
}



/* ================= ================= ================= ================= ================= Paticka / Footer -- */
.footer {
  background: #222;
  color: #f1f1f1;
  padding: 60px 10%;
  margin-top: 0; 
  font-family:'Poppins', sans-serif;
}

.footer a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #1e90ff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-box p,
.footer-box li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #1e90ff;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 10px;
  transition: transform 0.3s, background 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
  color: #fff;
  background: #ffb098;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
}

/* odstrani default margin z p */
.footer-bottom p {
  margin: 0;
}

/* oddelovacia ciara */
.footer-bottom p:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #444;
  margin-left: 20px;
}

/* ================= ================= nová úprava -- */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-link-arrow {
  color: #2F6DE1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-menu a:hover .footer-link-arrow {
  transform: translateX(4px);
  color: #ED8446;
}

.footer-menu a:hover,
.footer-bottom a:hover {
  color: #ED8446;
}

.footer-bottom .social-icons a:hover {
  transform: scale(1.1);
  color: #fff;
  background: #ED8446;
}

/* ================= ================= zmena farieb -- */

.social-icons a {
  background: white;
}
.social-icons a {
  color: black;
}
.footer-box h3 {
  color: white;
}



/* ================= ================= ================= ================= ================= Hero -- */
/* základ – nič z hero obrázkov sa tu nenačítava */

.hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 95% 15%;
  display: flex;
  align-items: center;
}

.hero {
  display: none;
}

.hero-mobile {
  display: none;
}


/* MOBIL */
@media (max-width: 560px) {
  .hero {
    display: none;
  }

  .hero-mobile {
    display: block;
    padding: 0 0 32px;
  }

  .hero-mobile__image {
    display: block;
    width: 100%;
    height: clamp(220px, 58vw, 280px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f4f8fb;
  }

  .hero-mobile__content {
    padding: 26px 24px 0;
    text-align: center;
  }

  .hero-mobile .hero-title {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.12;
  }

  .hero-mobile .hero-subtitle {
    max-width: 34ch;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-mobile .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 22px 0 0;
    margin-bottom: 0;
  }

  .hero-mobile .button-hero-obhliadka,
  .hero-mobile .button-hero-info {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
  }
}

/* TABLET + DESKTOP */
@media (min-width: 561px) {


  
  .hero {
    /*
    rozmery na hero pre hlavnu stranku: 
      172 * 724 px 
      pomer stran ≈ 3 : 1
    */
    display: block;
    min-height: clamp(500px, 75vh, 820px);
    padding: 80px 0;
  }
}

.hero-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%
}

.hero-container{
  max-width: 800px;
  /* moderny vertical rhythm */
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* novy riadok */
.hero-subtitle-location {
  display: block;
}

/* ------------------------------------------ HERO: efekt --------------- */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

background: linear-gradient(
  to right,
  rgba(255,255,255,0.95) 0%,
  rgba(255,255,255,0.85) 35%,
  rgba(255,255,255,0.45) 55%,
  rgba(255,255,255,0) 75%
);

  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
}

/* ------------------------------------------ HERO: texty --------------- */
.hero-title {
  font-weight: 600;
  color: #2f4454; /* tmavomodra */

  font-size: clamp(36px, 5vw, 64px);
  max-width: 22ch;
  /* Plynule skalovanie. Bez 5 breakpointov. */
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  /* font-size: 22px; 
  max-width: 40ch; */
  font-size: clamp(18px, 2.2vw, 22px);
  max-width: 45ch;
  line-height: 1.65;

  margin: 0 0 32px;
  line-height: 1.6;
  color: #445b6b;
}

.hero-title-line--blue{ 
  color:#2F6DE1;
  font-weight: 700;
}

/* profi zalamovanie textu */
.hero-title,
.hero-subtitle {
  text-wrap: balance;
}

.hero-title {
  max-width: 24ch;
}

/* ------------------------------------------ HERO: tlacidla --------------- */
.hero-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.button-hero-obhliadka {
  background: #2F6DE1;
  border: 2px solid #2F6DE1;
  color: #fff;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(47,109,225,.25);
  transition: all 0.25s ease; /* cas animacie */
}

.button-hero-obhliadka:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(47,109,225,.35);
}

.button-hero-info {
  background: transparent;
  border: 2px solid #2F6DE1;
  color: #2F6DE1;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.button-hero-info .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.button-hero-info:hover {
  background: #2F6DE1;
  color: #fff;
}

.button-hero-info:hover .arrow {
  transform: translateX(4px);
}

/* ------------------------------------------ HERO: animácia textu iba pre tablet a desktop --------------- */
@media (min-width: 561px) {
  .hero-title,
  .hero-subtitle,
  .hero-actions {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards;
  }

  .hero-subtitle {
    animation-delay: 0.2s;
  }

  .hero-actions {
    animation-delay: 0.4s;
  }
}

/* definicia animacie */
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ================= ================= ================= ================= ================= CTA - Plavajuci kontakt -- */

/* Hlavny kontajner - definuje priestor pre prvky */
.cta-bubble {
  position: fixed;
  bottom: 30px; /* Vzdialenost od spodku */
  right: 30px;  /* Vzdialenost od praveho okraja */
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 9999;
  font-family: sans-serif;
  
  /* sirka celeho prvku musi byt auto, aby sa prisposobila textu */
  width: auto;
}

/* Hlavny kruh - TERAZ UKOTVENY NAPEWNO */
.cta-bubble-icon {
  width: 60px;
  height: 60px;
  background-color: #007bff; /* Tvoja farba */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  
  /* KLUCOVE ZMENY PRE UKOTVENIE: */
  position: absolute;
  right: 0; /* PrilepI ho napevno k pravemu okraju kontajnera */
  top: 50%; /* Vertikalne vycentrovanie */
  transform: translateY(-50%); /* Dorovnanie vycentrovania */
  
  z-index: 2; /* Musi byt nad textom */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  
  animation: pulse-wave 2s infinite;
}

/* Textovy obluk - vysuva sa spod kruhu dolava */
.cta-bubble-text {
  background-color: #0056b3; /* Tvoja farba pre obluk */
  color: white;
  height: 50px;
  white-space: nowrap;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  
  /* Tvary obluka dolava */
  border-radius: 25px 0 0 25px; 
  
  /* Povodny stav: skryty pod kruhom */
  z-index: 1; /* Pod kruhom */
  margin-right: 30px; /* Odsadenie od stredu kruhu, aby text nebol prilis blizko */
  padding: 0; /* Bez paddingu pri skryti */
  width: 0;
  opacity: 0;
  overflow: hidden;
  
  /* Plynuly prechod */
  transition: width 0.3s ease-in-out, opacity 0.2s ease-in-out, padding 0.3s ease-in-out;
}

.cta-bubble:hover .cta-bubble-text {
  /* Zvacsili sme sirku z 190px napr. na 260px (uprav podla potreby, aby vosiel cely text) */
  width: 220px; 
  opacity: 1;
  
  /* Zvacsili sme pravy padding na 70px - to vytvori dostatocnu "stenu", 
     vdaka ktorej text neskoci pod kruh */
  padding: 0 70px 0 25px; 
}

/* Zrkadlove preklopenie ikonky */
.cta-bubble:hover .cta-bubble-icon {
  transform: translateY(-50%) scaleX(-1);
  background-color: #f4511e; /* Tvoja farba */
}

/*  verzia na mobil */
@keyframes pulse-wave {
  0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2); }
  70% { box-shadow: 0 0 0 15px rgba(0, 123, 255, 0), 0 4px 15px rgba(0, 0, 0, 0.2); }
  100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0), 0 4px 15px rgba(0, 0, 0, 0.2); }
}

@media (max-width: 768px) {
  .cta-bubble-text { display: none !important; }
  .cta-bubble:hover .cta-bubble-icon { transform: translateY(-50%) none; }
}





/* ================= ================= ================= =================   SECTION   ================= ================= ================= ================= */
/* ================= ================= ================= =================   SECTION   ================= ================= ================= ================= */
/* ================= ================= ================= =================   SECTION   ================= ================= ================= ================= */



/* ================= ================= ================= ================= 1 sekcia ================= Intro / intro-section -- */
.intro-section {
  padding: 40px 0;
  margin: 0;
  background: #ffffff;
}

.intro-section .intro-inner {
  max-width: 900px;      /* sirka textu */
  margin: 0 auto;        /* centrovanie */
  padding: 0 20px;       /* male horizontalne odsadenie od okrajov */
}

.intro-section p {
  margin: 0;             /* odstrani defaultne medzery od p */
  line-height: 1.8;      /* pekny riadkovy rozostup */
  font-size: 17px;
  color: #555;
}



/* ================= ================= ================= ================= 2 sekcia ================= Comu sa venujeme / home-services -- */

/* GRID */
.home-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* CARD */
.home-services .service-card {
  position: relative;
  overflow: hidden;

  display: grid;

  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 24px;

  min-height: 150px;
  padding: 18px 28px 18px 18px;

  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(47, 109, 225, 0.10);
  border-radius: 28px;

  box-shadow: 0 10px 28px rgba(31, 45, 61, 0.06);

  text-decoration: none;
  color: inherit;
  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.home-services .service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 109, 225, 0.28);
  box-shadow: 0 18px 45px rgba(31, 45, 61, 0.13);
}

/* ------------------------------------------ LEFT VISUAL --------------- */
.service-card__media {
  width: 84px;
  height: 84px;
  min-height: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 20px;

  background: rgba(47, 109, 225, 0.06);
}

/* zatial emoji verzia */
.service-card__icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #2F6DE1;
  color: #fff;
  border-radius: 13px;

  font-size: 21px;
  line-height: 1;
}

/* ------------------------------------------ RIGHT CONTENT --------------- */
.service-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;

  min-width: 0;
  width: 100%;
}

.service-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2d3d;
}

.service-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #5a6778;
}

/* ------------------------------------------ Odkaz / LINK LOOK --------------- */
.service-card__link {
  margin-left: auto;
  align-self: flex-end;

  display: inline-flex;
  align-items: center;
  gap: 4px;

  font-size: 16px;
  line-height: 1;
  font-weight: 600;

  /* color: #2F6DE1; */
  color: #2196f3; 
  transition: color 0.3s ease;
}

.home-services .service-card:hover .service-card__link {
  color: #ff6b00;
}

.home-services .service-card:hover .service-card__icon {
  background-color: #ff6b00;
}

.service-card__link .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.home-services .service-card:hover .arrow {
  transform: translateX(5px);
}

/* ------------------------------------------ */
/* FOCUS - klávesnica */
.home-services .service-card:focus-visible {
  outline: 3px solid rgba(47, 109, 225, 0.35);
  outline-offset: 4px;
}

/* jemnejsie */
.service-card__media {
  background: rgba(47, 109, 225, 0.045);
  transition: background-color 0.25s ease, background 0.25s ease;
}

.home-services .service-card:hover .service-card__media {
  background: rgba(255, 107, 0, 0.07);
}

@media (max-width: 900px) {
  .home-services__grid {
    grid-template-columns: 1fr;
  }

  .home-services .service-card {
    grid-template-columns: 130px 1fr;
  }
}

/* HLAVNÁ STRÁNKA: mobilné rozloženie kariet Čomu sa venujeme */
@media (max-width: 560px) {
  .home-services .service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "text text"
      "link link";
    align-items: center;
    column-gap: 18px;
    row-gap: 10px;
  }

  .home-services .service-card__media {
    grid-area: icon;
  }

  .home-services .service-card__content {
    display: contents;
  }

  .home-services .service-card__title {
    grid-area: title;
    margin: 0;
  }

  .home-services .service-card__text {
    grid-area: text;
    margin: 0;
  }

  .home-services .service-card__link {
    grid-area: link;
  }
}

/* HLAVNÁ STRÁNKA: karty Čomu sa venujeme na veľmi úzkych mobiloch */
@media (max-width: 320px) {
  .home-services {
    padding: 48px 16px 56px;
  }

  .home-services .section__title {
    margin-bottom: 32px;
  }

  .home-services .service-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title"
      "text"
      "link";
    gap: 14px;

    padding: 18px;
    border-radius: 24px;
  }

  .home-services .service-card__media {
    min-height: 96px;
  }

  .home-services .service-card__title {
    font-size: 20px;
  }

  .home-services .service-card__text {
    font-size: 15px;
  }
}



/* ================= ================= ================= ================= 3 sekcia ================= SLIDESHOW A -- */

.slideshow-wrapper{
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  /* lavy stlpec tlacidla, vpravo slider */
  grid-template-columns: 360px 1fr; 
  gap: 28px;
  align-items: center;
}

/* ------------------------------------------ SLIDESHOW LEFT: tlacidla */
.slideshow-nav{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* doplnok pre mobil */
.slideshow-mobile-nav { 
  display: none; 
}

/* tlacidla */
.slideshow-button{
  background: #ffffff;
  border-radius: 14px;
  border: 2px solid #5a6778;
  color: #5a6778;
  
  font-size: 24px;
  font-weight: 500;
  padding: 18px;
  /* padding: 18px 22px; */ 
  width: auto;

  transition: all 0.5s ease;
  cursor: pointer;
  margin: 10px; /* rozostupy tlacidiel */
}

.slideshow-button:hover{
  background: rgba(47,109,225,0.08);
}

/* active stav riadeny JS */
.slideshow-button.active{
  border: none;
  background: #0083C1;
  color: #ffffff;
  transform: translateX(6px);
}

/* ------------------------------------------ SLIDESHOW RIGHT: obsah */
.slideshow-container{
  max-width: 1000px;
  position: relative;
  margin: 0;
}

/* slide */
.mySlides{
  display: none;
  position: relative; /* aby text-block sedel na obrazku */
}

/* animacia fade */
.fade{
  animation: slideshow-fade 1s;
}

/* obrazky v tejto sekcii */
.slideshow-container img {
  width: 100%;
  height: 450px;      /* Nastav jednotnu vysku */
  display: block;
  border-radius: 18px;
  object-fit: cover;  /* oreze obrazok, aby vyplnil plochu a nedeformoval sa */
}

/* responzivne velkosti */
@media (max-width: 916px) {
  .slideshow-container img {
    height: 300px; /* Mensia vyska pre mobilne zariadenia */
  }
}

/* overlay text */
.text-block{
  position: absolute;
  border-radius: 12px;
  color: white;
  padding: 20px 20px;
  left: 12px;      /* 20px */
  right: 12px;     /* 20px */
  bottom: 12px;    /* 20px */
  font-size: 18px; /* 20px */
  background: #0083C1;
}

.text-block h4{
  padding-bottom: 12px;
}

/* EFEKT w3schools: posun textu + sipka */
.slideshow-button span{
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.slideshow-button span:after{
  content: '\00bb';   /* >> */
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.slideshow-button:hover span{
  padding-right: 25px;
}

.slideshow-button:hover span:after{
  opacity: 1;
  right: 0;
}

/* ------------------------------------------ SLIDESHOW: koniec */
.slideshow-end{
  max-width: 1200px;
  margin: 10px auto 10px;
  padding: 0 24px;

  /* centrovanie potomka bez zasahu do textov */
  display: flex;
  justify-content: center;
}

.slideshow-end-button{
  /* typ zobrazenia (aby tlacidlo nebolo 100% siroke) */
  display: inline-block;

  /* vzhlad */
  min-width: 280px;
  text-align: center;
  background-color: white;
  color: #2196F3;
  border: 2px solid #2196F3;
  text-decoration: none;
  font-weight: 700;
  font-size: 24px;
  padding: 12px 36px;
  border-radius: 24px;
  transition: transform .25s ease, box-shadow .15s ease;
}

.slideshow-end-button .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.slideshow-end-button:hover{
  background: #2196F3;
  color: white;
  transform: translateY(-2px);
}

.slideshow-end-button:hover .arrow {
  transform: translateX(4px);
}

.slideshow-end-button--problems {
  border: 2px solid #ED8446;
  color: #ED8446;
}

.slideshow-end-button--problems:hover {
  background: #ED8446;
  color: white;
}



/* ================= ================= ================= ================= 4 sekcia ================= SLIDESHOW B / SLIDESHOW REVERSE-- */
.slideshow-wrapper.reverse{ grid-template-columns: 1fr 360px; }
.slideshow-wrapper.reverse .slideshow-container{ order: 1; }
.slideshow-wrapper.reverse .slideshow-nav{ order: 2; }

/* modra: 0083C1, zelena: 1BBC9B, oranzova: ED8446, zelena2: 8EB021 */
.slideshow-wrapper.reverse .slideshow-button.active,
.slideshow-wrapper.reverse .text-block{
  background: #ED8446;
}



/* ================= ================= ================= ================= 5 sekcia ================= section--home-blog -- */

/* -- blog na hlavnej stranke -- */
.section--home-blog {
  background-color: white;
}

.faq-more--blog {
  margin-top: 32px;
}

.section--home-blog h1 {
  display: block;
  color: #2196f3;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* 2 stlpce */
.home-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 55px;
  align-items: center;
}

/* ------------------------------------------ LEFT - article list */
.home-blog-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-blog-item {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 22px;
  align-items: center;

  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 14px 18px 14px 14px;

  text-decoration: none;
  color: inherit;

  box-shadow: 0 8px 22px rgba(20, 35, 60, 0.08);
  border: 1px solid rgba(47, 109, 225, 0.08);

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-blog-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(20, 35, 60, 0.12);
  border-color: rgba(47, 109, 225, 0.22);
}

.home-blog-item__image {
  width: 135px;
  height: 95px;
  border-radius: 16px;
  overflow: hidden;
  background: #eef4ff;
  flex-shrink: 0;
}

.home-blog-item__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-blog-item__content {
  min-width: 0;
}

.home-blog-item__title {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  color: #253242;
}

.home-blog-item .blog-card__link {
  color: #2F6DE1;
}

/* Zmena na ORAnZOVU pri hoveri */
.home-blog-item:hover .blog-card__link {
  color: #ff6b00;
}

/* ikona je dalej od textu */
.section--home-blog .blog-card__link i {
  margin-left: 8px;
}

/* ------------------------------------------ RIGHT - intro */
.home-blog-intro {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  padding: 38px 36px;
  border: 1px solid rgba(47, 109, 225, 0.08);
}

.section--home-blog .section__eyebrow {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2F6DE1;
}

.home-blog-intro__title {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.15;
  font-weight: 800;
  color: #253242;
}

.home-blog-intro__text {
  margin: 0 0 26px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #556170;

  /* font-size: 1rem;     cca 16px   */
  /* font-size: 1.05rem;  cca 16.8px */
  /* font-size: 1.1rem;   cca 17.6px */
  /* font-size: 1.2rem;   cca 19.2px */
}

/* CTA button override only inside this section */
.section--home-blog .faq-more--blog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin: 0;
  padding: 13px 22px;

  border-radius: 999px;
  background: #2F6DE1;
  color: #fff;

  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 10px 22px rgba(47, 109, 225, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.section--home-blog .faq-more--blog:hover {
  transform: translateY(-2px);
  /* background: #1f5fd0; */
  background: #f4511e;
  /* box-shadow: 0 14px 28px rgba(47, 109, 225, 0.3); */
}

.section--home-blog .faq-more--blog .arrow {
  transition: transform 0.25s ease;
}

.section--home-blog .faq-more--blog:hover .arrow {
  transform: translateX(4px);
}

/* ================= =================
================= RESPONSIVE 
================= ================= */

@media (max-width: 950px) {
  .section--home-blog {
    padding: 55px 0;
  }

  .home-blog-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-blog-intro {
    order: -1;
    padding: 30px 26px;
  }

  .home-blog-intro__title {
    max-width: 650px;
  }

  .home-blog-intro__text {
    max-width: 700px;
  }
}

@media (max-width: 620px) {
  .section--home-blog {
    background-size: auto;
    padding: 45px 0;
  }

  .home-blog-item {
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
  }

  .home-blog-item__image {
    width: 96px;
    height: 76px;
    border-radius: 13px;
  }

  .home-blog-item__title {
    font-size: 0.92rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .home-blog-item__link {
    font-size: 0.86rem;
  }

  .home-blog-intro {
    border-radius: 22px;
    padding: 26px 22px;
  }

  .home-blog-intro__title {
    font-size: 1.7rem;
  }

  .home-blog-intro__text {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}

@media (max-width: 430px) {
  .home-blog-item {
    grid-template-columns: 1fr;
  }

  .home-blog-item__image {
    width: 100%;
    height: 150px;
  }
}



/* ================= ================= ================= ================= 6 sekcia ================= Caste otazky / faq-section / accordion -- */

/* styl tlacidiel, ktore sa pouzivaju na otvorenie a zatvorenie accordion panelu */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;

  /* miesto pre ikonu */
  position: relative;
  padding-left: 56px;

  /* font textov */
  font-size: 20px;
  font-weight: 700;
}

/* ked prejdes myskou */
.accordion:hover {
  background-color: #e0e7ff;   /* jemna pastelova modra */
  color: #1e3a8a;              /* tmavomodry text */
}

/* trieda .active sa prida cez JavaScript */
.accordion.active {
  background-color: #1e3a8a;
  color: #ffffff;
}

/* znaky +- v texte */
.accordion:after {
  content: '\002B';
  color: #1e3a8a;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion.active:after { 
  color: white;
  content: "\2212"; 
}

/* accordion panelu, predvolene je skryty */
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel p { 
  margin: 16px 0; 
}

/* odpoved: odrazky v panel */
.panel ul {
  margin: 25px;        /* rovnaké ako má <p> */
  padding-left: 18px;  /* rovnaké ako panel padding */
  font-size: 18px;     /* rovnaké ako <p> */
}

.panel li {
  margin-bottom: 18px;
  line-height: 1.6;    /* rovnaké ako body */
}

/* ikona ? */
.accordion::before {
  content: "?";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);

  width: 24px;
  height: 24px;
  border-radius: 50%;

  background-color: #1f6feb;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: bold;
}

.faq-section 
.section__title {
  margin-bottom: 16px;
}

.faq-section p{
  font-size: 18px;
  margin: 25px;
}

/* ------------------------------------------ odkaz z castych otazok */
.faq-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;

  font-size: 17px;
  font-weight: 500;
  color: #1f6feb;
  text-decoration: none;
  transition: color 0.2s ease;

  position: relative;
}

.faq-more .arrow {
  transition: transform 0.2s ease;
}

.faq-more:hover {
  color: #f4511e;
}

.faq-more:hover .arrow {
  transform: translateX(4px);
}

.faq-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f4511e;
  transition: width 0.25s ease;
}

.faq-more:hover::after {
  width: 100%;
}

/* ked kliknes na anchor (napr. #servis-okien), 
header ti moze prekryt nadpis */ 
html {
  scroll-padding-top: 100px;
}



/* ================= ================= ================= ================= 7 sekcia ================= Ako prebieha servis / process -- */
.process 
.section__title {
  margin-bottom: 80px; /* 90 */
}

/* GRID */
.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
}

/* LINE (desktop) */
.process__grid::before {
  content: "";
  position: absolute;
  top: 124px;
  left: -10px;
  right: -10px;
  height: 12px;
  border-radius:6px;
  z-index: 0; 

  background: linear-gradient(
    90deg,
    rgba(47,109,225,0.3),
    #2F6DE1,
    rgba(47,109,225,0.3)
  );
  box-shadow:
    0 2px 6px rgba(47,109,225,0.25),
    0 0 12px rgba(47,109,225,0.2);
}

/* CARD */
.process-card {
  background: #ffffff;
  padding: 36px 24px 24px; /* pridame padding dole */  
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0px; /* 12 */
  transition: transform .25s ease, box-shadow .25s ease;
  z-index: 1;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* NUMBER */
.process-card__number {
  width: 60px;
  height: 60px;
  margin: -70px auto 20px;
  border-radius: 50%;
  background: #2F6DE1;
  color: white;
  font-weight: 700;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(47,109,225,.35);
}
.process-card__number{
  box-shadow:
    0 10px 25px rgba(47,109,225,.35),
    0 0 0 6px rgba(47,109,225,.08);
}

.process-card:hover .process-card__number {
  background: #f4511e;
    box-shadow:
    0 10px 25px rgba(255, 107, 0, 0.35),
    0 0 0 6px rgba(255, 107, 0, 0.08);
}

/* TEXT */
.process-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a6778;
  margin-bottom: 20px;
}

/* ================= =================
================= RESPONSIVE 
================= ================= */

@media (max-width: 1250px){
  .process__grid{ grid-template-columns: repeat(3, 1fr); 
  }
}

@media (max-width: 1100px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__grid::before{ display:none; }
}

@media (max-width: 640px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
}



/* ================= ================= ================= ================= 8 sekcia ================= Kontaktny formular / contact-form-section -- */

/* ------------------------------------------ cela sekcia */
.contact-form-section {
  padding: 70px 24px 56px;
}

.contact-form-section .section__title {
  margin-bottom: 14px;
}

.contact-form-subtitle {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 19px;
  line-height: 1.7;
  color: #5a6778;
}

/* ------------------------------------------ hlavny grid: lava karta + pravy formular */
.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(460px, 1.15fr);
  gap: 32px;
  align-items: stretch;
}

/* spolocny vzhľad oboch kariet */
.contact-form-info,
.contact-form {
  background: #ffffff;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(31, 45, 61, 0.08);
  box-shadow: 0 14px 38px rgba(31, 45, 61, 0.08);
  box-sizing: border-box;
}

/* nadpisy v kartach */
.contact-form-title {
  margin-bottom: 18px;
  font-size: 23px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2f4454;
}

/* ------------------------------------------ LEFT: Kontaktne udaje */
.contact-form-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  color: #445b6b;
}
.contact-form-info p {
  margin: 0;
}

/* -------------------------------------------------------------------------------------------- */
/* riadok s ikonou + kontaktom */

.contact-form-moje_kontakty {
  display: flex;
  align-items: center;
}

/* odkazy v lavej karte */
.contact-form-info a {
  color: #ED8446;
  text-decoration: none;
  font-weight: 700;
}

.contact-form-info a:hover {
  color: #2F6DE1;
}

.contact-form-info a.contact-form-phone-cta {
  color: #ffffff;
}

.contact-form-info a.contact-form-phone-cta:hover {
  color: #ffffff;
}

/* telefon ako hlavne CTA */
.contact-form-phone-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: fit-content;
  min-width: 180px;
  margin: 8px 0 2px;
  padding: 14px 18px 14px 24px;
  border-radius: 999px;
  background: #2F6DE1;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(47, 109, 225, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-sizing: border-box;
}

.contact-form-phone-cta:hover {
  background: #f4511e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(244, 81, 30, 0.24);
}

/* email pokojnejsi ako telefon */
.contact-form-email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px; 
  padding-left: 24px;
  text-decoration: none;
  font-weight: 700;
}

.contact-form-email-link:hover {
  color: #2F6DE1;
}

/* SVG ikony v kontaktoch */
.contact-form-moje_kontakty .fa-icon {
  color: currentColor;
  flex-shrink: 0;
}




/* -------------------------------------------------------------------------------------------- */
/* text posobnosti ako badge */
.contact-form-tucny_text {
  width: fit-content;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef4ff;
  color: #2F6DE1;
  font-weight: 700;
}

/* mapa v lavej karte */
.contact-form-info .row__image {
  position: relative;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(31, 45, 61, 0.08);
  box-shadow: 0 12px 28px rgba(31, 45, 61, 0.08);
}
.contact-form-info .row__image img {
  width: 100%;
  display: block;
}
.contact-form-info .image-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #2f4454;
  font-size: 14px;
  font-weight: 700;
}

/* ------------------------------------------ RIGHT: Kontaktny formuar */
.contact-form {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-weight: 600;
  font-size: 14px;
  color: #2f4454;
}

/* povinne polia */
.cf_required::after {
  content: " * povinné";
  color: #2F6DE1;
  font-size: 14px;
  font-weight: 400;
  margin-left: 8px;
}

/* --------------------- input skupina s ikonou */
/* input skupina s ikonou */
.contact-form .input-group {
  position: relative;
}
.contact-form .input-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #2F6DE1;
  font-size: 18px;
  pointer-events: none;
}
.contact-form .input-group .fa-icon.textarea-icon {
  top: 12px;
  transform: none;
}

.contact-form .input-group .fa-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #2F6DE1;
  pointer-events: none;
  z-index: 2;
}

.contact-form .input-group input {
  padding-left: 52px;
}

/* inputy a textarea */
.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px 12px 44px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  font-size: 14px;
  font-family: inherit;
  cursor: text;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2F6DE1;
  box-shadow: 0 0 0 2px rgba(47, 109, 225, 0.2);
}

/* checkbox */
.checkbox-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-top: 10px;
  cursor: pointer;
  color: #445b6b;
}

.checkbox-consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* GDPR odkaz */
.gdpr-link {
  color: #2F6DE1;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.gdpr-link:hover {
  color: #e53935;
}

/* tlacidlo odoslat */
.contact-form button {
  width: min(320px, 100%);
  align-self: center;
  margin-top: 40px;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: #2F6DE1;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(47, 109, 225, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.contact-form button:hover {
  background: #f4511e;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(244, 81, 30, 0.28);
}

/* ------------------------------------------ Responzivita */
@media (max-width: 900px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-info .row__image {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .contact-form-section {
    padding: 54px 16px 44px;
  }

  .contact-form-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .contact-form-info,
  .contact-form {
    padding: 24px;
    border-radius: 22px;
  }

  .contact-form-phone-cta,
  .contact-form-tucny_text {
    width: 100%;
    justify-content: center;
  }

  .contact-form button {
    width: 100%;
  }
}





/* ================= ================= ================= =================   SUBPAGE   ================= ================= ================= ================= */
/* ================= ================= ================= =================   SUBPAGE   ================= ================= ================= ================= */
/* ================= ================= ================= =================   SUBPAGE   ================= ================= ================= ================= */



/* ================= ================= ================= ================= ================= HERO PODSTRANKY -- */

/* TABLET + DESKTOP */
/* ================= HERO PODSTRANKY ================= */

@media (min-width: 561px) {
  .hero-subpage {
    height: 400px;
    min-height: 0;
    padding: 0;
  }

  .hero-subpage::before {
    background: linear-gradient(
      to right,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.90) 30%,
      rgba(255,255,255,0.60) 45%,
      rgba(255,255,255,0.15) 55%,
      rgba(255,255,255,0) 65%
    );
  }
}

.hero-container-subpage {
  max-width: 600px;
}

.hero-title-subpage {
  font-size: clamp(36px, 5vw, 56px);
  margin-top: 56px;
  line-height: 1.1;
}

.hero-subtitle-subpage {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.65;
}

/* ================= ================= ================= ================= ================= navigacia / Breadcrumbs -- */
.breadcrumbs {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
  font-size: 17px;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  color: #2F6DE1;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.breadcrumbs a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s ease;
}

.breadcrumbs a:hover {
  color: #f4511e;
}

.breadcrumbs a:hover::after {
  width: 100%;
  color: #f4511e;
}

.breadcrumbs__separator {
  color: #9aa4b2;
}

.breadcrumbs__current {
  /* color: #e11d48; */
  color: #9aa4b2;
  font-weight: 600;
}



/* ================= ================= ================= ================= ================= SUBPAGE priprava -- */

/* ------------------------------------------ SUBPAGE: nadpisy */
.section__title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 56px;
  color: #1f2d3d;
}

/* podnadpis pre sekcie */
.section__subtitle {
  max-width: 700px;
  margin: -36px auto 40px;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #5a6778;
}

/* ------------------------------------------ SUBPAGE: text pod nadpisom */
.section__intro {
  max-width:700px;
  margin:0 auto 30px auto;
  text-align:center;
  font-size:18px;
  line-height:1.7;
  color:#5a6778;
}

/* ------------------------------------------ GRID */
.grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px; 
}
@media (max-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------ GRID - nove rozlozenie kariet */
.new__card-grid-2 {  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.new__card-grid-3 {  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.new__card-grid-4 {  
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}



/* ================= ================= ================= ================= ================= NOVA CTA sekcia -- */
.cta-section {
  width: 100%;
  padding: 60px 0; /* Horny a dolny odstup celej sekcie */
  
  /* Nastavenie opakujuceho sa pozadia */
  background-image: url('img/background/cta-background.webp'); 
  background-repeat: repeat; /* Toto zabezpeci opakovanie pod sebou aj vedla seba */
  background-position: top center;
  background-attachment: scroll; /* Pozadie sa hybe spolu s textom */
  
  /* Ak chces, aby to nebolo prilis tmave, mozes pod to hodit farbu */
  background-color: #fcfdfe; 
  /* background: #fcfcfc; */
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 15px;
    text-decoration: none !important;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #3498db;
}

/* ------------------------------------------ LEFT */
.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ebf5ff; /* Jemna modra */
    color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
}

.cta-card:hover .cta-icon-wrapper {
    color: #ff6b00;
}

.cta-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-title {
    margin: 0;
    font-size: 20px;
    color: #2f4454;
    font-weight: 700;
}

/* ------------------------------------------ RIGHT */
.cta-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-link-text {
    font-weight: 600;
    color: #3498db;
    font-size: 15px;
}

.cta-arrow {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cta-card:hover .cta-link-text {
    color: #ff6b00;
}

.cta-card:hover .cta-arrow {
    transform: translateX(5px);
    background: #ff6b00;
}

/* ------------------------------------------ Responzivny */
@media (max-width: 768px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cta-left {
        flex-direction: column;
    }
    .cta-right {
        width: 100%;
        justify-content: center;
        border-top: 1px solid #f5f5f5;
        padding-top: 15px;
    }
}





/* ================= ================= ================= =================  1 SUBPAGE: Servis okien   ================= ================= ================= ================= */
/* ================= ================= ================= =================  1 SUBPAGE: Servis okien   ================= ================= ================= ================= */
/* ================= ================= ================= =================  1 SUBPAGE: Servis okien   ================= ================= ================= ================= */
.subpage--servis .subpage---hero {
  background-image: url("img/hero-servis.webp");
}



/* ================= ================= ================= ================= Servis okien - 1 sekcia ================= Ako funguje servis okien / subpage-section--services -- */

/* ------------------------------------------ ROW */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.row.row--reverse { direction: rtl; }
.row.row--reverse .row__text,
.row.row--reverse .row__image { direction: ltr; }

/* ------------------------------------------ ROW: texty */
.row__text h3 {
  font-size: 26px;
  font-weight: 600;
  color: #2f4454;
  margin-bottom: 18px;
}

.row__text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.row__text h3:first-child { margin-top: 0; }

/* ------------------------------------------ ROW: odrazky */
.row__text ul {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  padding-left: 18px;
}

.row__text li {
  margin-bottom: 8px;
}

/* ------------------------------------------ ROW: obrazok */
.row__image { position: relative; }
.row__image img {
  width: 100%;
  height: auto;
  max-height: 540px; /* podla potreby */
  max-height: 400px;
  object-fit: cover;  /* Zabrani deformacii obrazka */
  display: block;
  border-radius: 16px; /* 12 */
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;

  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px); /* Rozmaze pozadie pod textom */
  -webkit-backdrop-filter: blur(8px); /* Pre Safari */
}

/* ------------------------------------------ ROW: obrazok - hover */
.row__image:hover img {
  transform: scale(1.05);
}
.row__image {
  overflow: hidden;
}
.row__image img {
  transition: transform 0.3s ease;
}



/* ================= ================= ================= ================= Specialny posuvac na obrazkoch */

/* nova sekcia pre konkretny slider */
.custom-ba-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    background: #333;
}

@media (max-width: 768px) {
    .custom-ba-container {
        height: 250px; /* Menšia výška pre mobily */
    }
}

.cba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Vrstva PRED (orezavana) */
.cba-before {
    position: absolute;
    top: 0;
    left: 0;          /* ZMENA: Naspäť na vľavo */
    right: auto;       /* ZMENA: Zrušiť vpravo */
    z-index: 2;
    width: 50%; 
    height: 100%;
    overflow: hidden;
}

/* Nova deliaca ciara, ktora sa hybe s obrazkom */
/* 1. ciara - teraz ju dame cez samostatny element, aby nebola orezana */
/* Tiahlo (kruzok) nadviazane na slider, aby ho nic neorezalo */
/* Cely biely kruzok so sipkami */
.custom-ba-container::after {
    content: '‹ ›';
    position: absolute;
    top: 50%;
    left: var(--position, 50%); /* Sem posielame data z JavaScriptu */
    transform: translate(-50%, -50%);
    
    width: 44px;
    height: 44px;
    background: #fff;
    color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    z-index: 20; 
    pointer-events: none; /* Dolezite: aby si mohol stale klikat na slider pod nim */
}

/* Ked pouzivatel nadide nad slider, sipky scervenaju */
.custom-ba-container:hover::after {
    color: #ff0000; /* Klasicka cervena, alebo pouzi #e74c3c pre modernejsiu */
    transition: color 0.3s ease; /* Prida plynuly prechod farby */
}

/* Biela linia (ciara), ktora sa hybe s kruzkom */
.custom-ba-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--position, 50%);
    width: 3px;
    background: white;
    transform: translateX(-50%);
    z-index: 19;
    pointer-events: none;
}

/* Fixne obrazky - nesmu sa hybat! */
.cba-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* klucove */
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none; /* Aby obrazky neblokovali tahanie slidera */
}

/* Slider, ktory prekryva vsetko */
.cba-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    background: transparent;
    z-index: 10;
    cursor: ew-resize;
    margin: 0;
}
.cba-range {
    opacity: 0; /* Radsej pouzit opacity ako transparent background */
    cursor: col-resize;
}
.cba-range::-moz-range-thumb {
    width: 50px;
    height: 400px;
    cursor: ew-resize;
}
.cba-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 50px;
    height: 400px;
}

/* Toto teraz presne kopiruje tvoj styl z ostatnych obrazkov */
.cba-label {
    position: absolute;
    bottom: 20px;         /* Presne podla tvojho */
    left: 20px;           /* Presne podla tvojho */
    
    background: rgba(0, 0, 0, 0.7); /* Tvoja cierna s priehladnostou */
    color: #fff;
    
    padding: 10px 16px;   /* Tvoj padding */
    border-radius: 6px;   /* Tvoje zaoblenie stitku */
    font-size: 15px;      /* Tvoja velkost */
    font-weight: 500;     /* Tvoja hrubka */
    
    white-space: nowrap;  /* Zabezpeci, aby sa text nezalamoval */
    z-index: 10;
}

/* stitok pre "PO" musi byt vpravo, aby ho bolo vidiet */
.cba-l-after {
    left: auto;
    right: 20px;
}
/* Vrstva PRED (ta, ktora sa zmensuje/zvacsuje) */

/* Obrazok vo vnutri vrstvy PRED */
.cba-before img {
    position: absolute;
    top: 0;
    left: 0;          /* ZMENA: Obrazok musi byt tiez vlavo */
    right: auto;
    width: 100%;      /* sirku prepisuje JS, ale nechajme 100% ako zaklad */
    height: 100%;
    object-fit: cover;
}

/* Vrstva PO (ta na pozadi) */
.cba-after {
    position: absolute;
    top: 0;
    left: 0;          /* Tato zostava cez celu plochu */
    z-index: 1;
    width: 100%;
    height: 100%;
}

.cba-range {
    direction: ltr !important; /* Vynuti, aby 0 bola vzdy vlavo na PC aj mobile */
    -webkit-appearance: none;
    appearance: none;
    opacity: 0;
    cursor: ew-resize;
}



/* ================= ================= ================= ================= Servis okien - 2 sekcia ================= Najcastejsie problemy s oknami / subpage-section--problems -- */

/* ------------------------------------------ text-card */
.text-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.text-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

.text-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2F6DE1, #1e90ff);
}

.text-card:hover::before {
  background: #f4511e;
}

/* ------------------------------------------ text-card - texty */
.text-card h3 {
  margin-bottom: 10px; /*16*/
  font-size: 20px;     /*22*/
  font-weight: 700;
  /*color: #1f2d3d;*/
  /*font-weight: 600;*/
  /*margin: 0;*/
  color: #2f4454;
}

.text-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #5a6778;
}

/* ikony v nadpise*/
.text-card__title {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 10px;
  font-size: 20px;
  color: #2f4454;
}

.text-card__icon {
  width: 42px;
  height: 42px;

  border-radius: 12px;
  background: linear-gradient(135deg, #2F6DE1, #1e90ff);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.text-card__icon-white {
  background: #eef4ff;
  color: #1f6feb;
}

.text-card__icon svg {
  width: 22px;
  height: 22px;
}

.text-card:hover .text-card__icon {
  transform: scale(1.1);
  transition: 0.2s;
}

/* ------------------------------------------ responzivny */
@media (max-width: 900px) {
  .subpage--servis .subpage-section--problems .new__card-grid-3 {
    grid-template-columns: 1fr;
  }
}
/* vseobecne */
@media (max-width: 900px) {
  .new__card-grid-3 {
    grid-template-columns: 1fr;
  }
}



/* ================= ================= ================= ================= Servis okien - 4 sekcia ================= Preco si vybrat prave nas / subpage-section--why-us -- */

/* velmi jemny gradient za kartami */
.subpage-section--why-us {
  position: relative;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(47,109,225,0.06),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(47,109,225,0.05),
      transparent 45%
    ),
    #ffffff;
}

/* ------------------------------------------ GRID - why-grid */
.why-grid {
  display:grid;
  /* grid-template-columns:repeat(3,1fr); */
  /* Responsivita - moderna */
  /* grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); */
  /* gap:30px; */
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:40px;
}

/* ------------------------------------------ CARD IMAGE */
.card__image {
  margin-top: auto;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.card__image img {
  width: 100%;
  max-width: 260px;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;

  border-radius: 16px;
}

/* ------------------------------------------ CARD IMAGE SMALL */
.card__image-small {
  margin-top: auto; 
  /* overflow: hidden; 
  border-radius: 64px;*/
}

.card__image-small img {
  width: 100%;
  max-width: 220px; /* jemna kontrola velkosti */
  margin: 0 auto;
  display: block;
  transform: scale(1.25);
  border-radius: 64px;
}

/* ------------------------------------------ WHY CARD */
.why-card {
  max-width:360px;
  margin:auto;
  /* opticke vyrovnanie vysky obsahu v bublinach */
  display:flex;
  flex-direction:column;
  height:100%;
  gap:14px;
}

.why-card {
  background:#fff;
  padding:40px 30px 20px;
  border-radius:24px;
  text-align:center;

  border:2px solid rgba(31,45,61,0.06);
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:transform .25s ease,
             box-shadow .25s ease,
             border-color .25s ease;
}

.why-card:hover {
  transform:translateY(-6px);
  box-shadow:
    0 20px 50px rgba(31,45,61,0.12),
    0 8px 20px rgba(47,109,225,0.15);
  border-color:rgba(47,109,225,0.25);
}

/* ------------------------------------------ CARD: ikona nad nadpisom  */
.card__top-icon {
  width:70px;
  height:70px;
  margin:0 auto 20px;
  margin-bottom:18px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;
  background:#2F6DE1;
  color:#fff;
  box-shadow:0 10px 25px rgba(47,109,225,.35);
}

/* ------------------------------------------ WHY CARD: texty */
.why-card h3{
  margin-bottom:12px;
  color: #2f4454;

  /* Moderny UI frameworky (Apple, Stripe, Vercel) */ 
  font-size:22px;
  font-weight:700;
  line-height:1.3;
  letter-spacing:0.3px;
}

.why-card p{
  font-size:17px;
  line-height:1.6;
  color:#5a6778;
  flex-grow:1;
}





/* ================= ================= ================= =================  2 SUBPAGE: Sietky proti hmyzu   ================= ================= ================= ================= */
/* ================= ================= ================= =================  2 SUBPAGE: Sietky proti hmyzu   ================= ================= ================= ================= */
/* ================= ================= ================= =================  2 SUBPAGE: Sietky proti hmyzu   ================= ================= ================= ================= */




/* ================= ================= ================= ================= Sietky proti hmyzu - 1 sekcia ================= Co zahrna nasa ponuka / subpage-section--offer -- */

/* ------------------------------------------ obrazok */
#obrazok--sietky-2 {
  max-height: 360px; /* nastavíš podľa potreby */
  width: auto;       /* zachová proporcie */
  display: block;
}

/* ------------------------------------------ medzera na kocni sekcie pod row */
.subpage--sietky
.subpage-section--offer
.row:last-child {
  margin-bottom: 0 !important;
}
.subpage--sietky
.subpage-section--offer { 
  padding-bottom: 40px;
} 



/* ================= ================= ================= ================= Sietky proti hmyzu - 2 sekcia ================= Typy sietok proti hmyzu / subpage-section--mesh-types -- */

/* ------------------------------------------ nove karty - picture-card */
.picture-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;

  text-align: left;
  max-width: none;
  margin: 0;
}

.picture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}

.picture-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2F6DE1, #1e90ff);
}

.picture-card:hover::before {
  background: #f4511e;
}

.picture-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #2f4454;
}

.picture-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #5a6778;
  flex-grow: 1;
}

/* ------------------------------------------ responzivny */
@media (max-width: 900px) {
  .subpage--sietky .new__card-grid-2 {
    grid-template-columns: 1fr;
  }
  .subpage--sietky .card-image {
    height: 220px;
  }
}

/* ------------------------------------------ konzistentne velkosti obrazkov */
.picture-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.picture-card .card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 16px;
  border-radius: 16px; /* 12 */
}

/* ------------------------------------------ dodatok: obrazok na vyplnenie priestoru */
.picture-card--sietky-problem .image-overlay {
  bottom: 10px;
  left: 10px;
}

.picture-card.picture-card--sietky-problem {
  padding: 16px;
}

.picture-card--sietky-problem .row__image {
  padding: 0;
  margin: 0;
}





/* ================= ================= ================= =================  3 SUBPAGE: Zaluzie a rolety   ================= ================= ================= ================= */
/* ================= ================= ================= =================  3 SUBPAGE: Zaluzie a rolety   ================= ================= ================= ================= */
/* ================= ================= ================= =================  3 SUBPAGE: Zaluzie a rolety   ================= ================= ================= ================= */
.subpage--zaluzie .subpage---hero {
  background-image: url("img/hero-zaluzie.webp");
}



/* ================= ================= ================= ================= Zaluzie a rolety - 1 sekcia ================= Zaluzie a rolety na mieru / subpage-section--blinds -- */

/* ------------------------------------------ row__text */
.row__text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.row__text li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.row__text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: #1f6feb;
  border-radius: 50%;
}

/* ------------------------------------------ medzera medzi sekciami */
.subpage--zaluzie 
.subpage-section--blinds
.row:last-child {
  margin-bottom: 0 !important;
  /* margin posledneho vnutorneho elementu */
}

.subpage--zaluzie 
.subpage-section--blinds
{ 
  padding-bottom: 40px;
} 



/* ================= ================= ================= ================= Zaluzie a rolety - 3 sekcia ================= Oprava zaluzii / subpage-section--blinds-repair -- */

/* ------------------------------------------ gallery-grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}





/* ================= ================= ================= =================  4 SUBPAGE: Kde robime servis okien / SEO   ================= ================= ================= ================= */
/* ================= ================= ================= =================  4 SUBPAGE: Kde robime servis okien / SEO   ================= ================= ================= ================= */
/* ================= ================= ================= =================  4 SUBPAGE: Kde robime servis okien / SEO   ================= ================= ================= ================= */
.subpage--seo .subpage---hero {
  background-image: url("img/hero-seo.webp");
   background-position: center 50%;
}



/* ================= ================= ================= ================= SEO - sekcia ================= Kde robime servis okien / slideshow-section--ba -- */

/* Kontajner pre tlacidla, aby boli v riadku hore */
.slideshow-nav-top {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

/* Skryjeme staru navigaciu */
.slideshow-section--ba .slideshow-nav {
  display: none;
}

/* Rozlozenie 1:1 pre mapu a text */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 stlpce */
  gap: 30px;
  align-items: center;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
}

/* ------------------------------------------ SEO mapa */
.map-col {
    display: block;
    width: 100%;
    max-width: 450px;   /* velkost, napr. 350px alebo 300px */
    aspect-ratio: 1 / 1;
    margin: 0 auto;     /* Vycentruje zmensenu plochu v stlpci */
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.map-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease; /* dlzka, styl animacie */
}

/* zoom efekt pri hoveri */
.map-col:hover img {
    transform: scale(1.1); /* zvacsenie o 10% */
}

/* ------------------------------------------ SEO text */
.text-col {
    padding: 10px;
}

.text-col h3 {
    font-size: 28px;
    color: #2f4454;
    margin-bottom: 15px;
    font-weight: 700;
}

.text-col p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* text v bubline */
.location-tag {
    display: inline-block;
    background: #eef2f5;
    color: #2f4454;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ------------------------------------------ SEO text - odrazky s ikonou */
.seo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.seo-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

/* Modrá farba SVG ikon iba v danej sekcii */
.seo-features .fa-icon {
  color: #3498db;
}

/* ------------------------------------------ SEO tlacidlo */
.btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: #2f4454;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-small:hover {
    background: #3498db;
}



/* ================= ================= ================= ================= SEO - sekcia ================= CTA: ako prebieha servis / how-it-works-cta -- */
.how-it-works-cta {
    padding: 40px 0;
    background: #fcfcfc;
}

.cta-how-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 15px;
    text-decoration: none !important;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.cta-how-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #3498db;
}

.cta-how-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-how-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ebf5ff; /* Jemná modrá */
    color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
}

.cta-how-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-how-title {
    margin: 0;
    font-size: 20px;
    color: #2f4454;
    font-weight: 700;
}

.cta-how-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-how-link-text {
    font-weight: 600;
    color: #3498db;
    font-size: 15px;
}

.cta-how-arrow {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cta-how-card:hover .cta-how-arrow {
    transform: translateX(5px);
}

/* ------------------------------------------ Responzivny */
@media (max-width: 768px) {
    .cta-how-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cta-how-left {
        flex-direction: column;
    }
    .cta-how-right {
        width: 100%;
        justify-content: center;
        border-top: 1px solid #f5f5f5;
        padding-top: 15px;
    }
}





/* ================= ================= ================= =================  5 SUBPAGE: Caste otazky   ================= ================= ================= ================= */
/* ================= ================= ================= =================  5 SUBPAGE: Caste otazky   ================= ================= ================= ================= */
/* ================= ================= ================= =================  5 SUBPAGE: Caste otazky   ================= ================= ================= ================= */
.subpage--otazky .subpage---hero {
  background-image: url("img/hero-otazky.webp");
  background-position: center -15px; 

}





/* ================= ================= ================= =================  6 SUBPAGE: Galeria   ================= ================= ================= ================= */
/* ================= ================= ================= =================  6 SUBPAGE: Galeria   ================= ================= ================= ================= */
/* ================= ================= ================= =================  6 SUBPAGE: Galeria   ================= ================= ================= ================= */
.subpage--video .subpage---hero {
  background-image: url("img/hero-galeria.webp");
}



/* ================= ================= ================= ================= Galeria - sekcia ================= / video-gallery -- */

/* ------------------------------------------ grid pre video karty */
.video-grid {
  display: grid;
  /* MODERNY RESPONSIVE */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  column-gap: 32px; /* medzi stlpcami */
  row-gap: 40px;    /* medzi riadkami ⬅ tu zvacsis */
}

/* ------------------------------------------
   karta pre video
------------------------------------------ */

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;

  width: 100%;
  max-width: none;
  margin: 0 auto;

  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;

  border: 3px solid #1f6feb;
  background: #111;

  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}


/* ------------------------------------------
   náhľad videa / obrázka
   funguje pre staré img aj nové video
------------------------------------------ */

.video-card img,
.video-card video,
.video-card__thumb {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center;

  transition: transform 0.4s ease;
}


/* vypne interakciu priamo s náhľadovým videom,
   klik rieši celá .video-card */
.video-card__thumb {
  pointer-events: none;
}


/* jemný hover efekt */
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(31, 111, 235, 0.28);
}

.video-card:hover img,
.video-card:hover video,
.video-card:hover .video-card__thumb {
  transform: scale(1.04);
}


/* ------------------------------------------
   tmavé prekrytie pre náhľad karty
------------------------------------------ */

.video-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 42%,
    rgba(0,0,0,0.18) 100%
  );

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 20px;
  color: white;
}


/* ------------------------------------------
   ikona play
------------------------------------------ */

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;

  transform: translate(-50%, -50%);

  width: 64px;
  height: 64px;
  border-radius: 50%;

  background: rgba(255,255,255,0.92);
  color: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: bold;

  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}


/* ------------------------------------------
   texty na karte
------------------------------------------ */

.video-card__content {
  position: relative;
  z-index: 3;
}

.video-card__content h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 6px;
}

.video-card__content p {
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.88;
  margin: 0;
}

/* ------------------------------------------ karta pri prejdeni mysou */
.video-card:hover {
  box-shadow: 25px 25px 60px rgba(31,45,61,0.14);
  border-color: #f4511e;
}
.video-card:hover img {
  transform: scale(1.05);
}
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ------------------------------------------ rozbalene okno s videom */
.video-modal {
  display: none;   /* default = skryty */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);

  justify-content: center; 
  align-items: center; /* ↓ posunie do stredu */
  z-index: 9999; /* vyssie ako header */
}

.video-modal.active {
  display: flex;    /* default = skryty */
}

.video-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: translateY(-40px);

  border-radius: 24px;
  overflow: hidden;
}

/* ------------------------------------------ priestor pre video */
.video-wrapper{
  width: 90vw;
  max-width: 400px;
  max-height: 80vh;
  margin: 0 auto;

  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

/* plati pre video aj iframe */
.video-wrapper video,
.video-wrapper iframe{
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;

  border: 0;
  border-radius: 28px;
}

.video-wrapper > *{
  border-radius: 28px;
}
/* X pre zavretie */
.video-close{
  position: absolute;
  top: 10px;      /* ⬅ dovnutra */
  right: 10px;
  font-size: 22px;

  background: #1f6feb;
  color: white;
  border: none;
  border-radius: 50%;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 10000;
}
.video-close:hover{
  background: #f4511e;
}





/* ================= ================= ================= =================  SUBPAGE: BLOG   ================= ================= ================= ================= */
/* ================= ================= ================= =================  SUBPAGE: BLOG   ================= ================= ================= ================= */
/* ================= ================= ================= =================  SUBPAGE: BLOG   ================= ================= ================= ================= */



/* ------------------------------------------ HERO */
.subpage---hero--blog {
  width: 100%;
  height: 410px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Tvoj specificky obrazok */
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fcfdfe;
}

/* Zvacseny text NAS BLOG - nodry */
.subpage---hero--blog .intro__overline {
  color: #2196f3; 
  font-size: 32px; 
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

/* Tmavy nadpis */
.subpage---hero--blog .hero-blog-title {
  color: #1a2b3c;
  font-size: 42px; /* standardna velkost tvojich nadpisov */
  font-weight: 850;
  margin: 0;
}



/* ================= ================= ================= ================= BLOG - sekcia ================= obsah stranky / subpage-section--blog -- */

/* uprava mriezky, aby karty neboli "nalepene" na nadpis */
.subpage-section--blog {
  padding-top: 20px;
  background-color: #fcfdfe;
}

/* ------------------------------------------ karta blogu */
.blog-card {
  position: relative; /* dolezite pre hornu linku */
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 380px;
  border: 1px solid #eef2f6;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Horna farebna ciara */
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px; /* Hrúbka čiary */
  background-color: #2196f3; /* Pôvodná modrá */
  z-index: 10;
  transition: background-color 0.3s ease;
}

/* hover efekty pre celu kartu */
.blog-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

/* Zmen ciaru na ORANZOVU pri hoveri */
.blog-card:hover::before {
  background-color: #ff6b00; 
}

/* ------------------------------------------ obrazok */
.blog-card__image-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__content {
  padding: 24px;
  flex-grow: 1;
}

/* ------------------------------------------ texty */
.blog-card__title {
  color: #2f4454; /* Pôvodne čierny text */
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6; /* 1.38 */
  margin: 0;
  transition: color 0.3s ease;

  line-height: 1.6;
  color: #2f4454;
}

/* zmena nadpisu na MODRU pri hoveri */
.blog-card:hover .blog-card__title {
  color: #2196f3;
}

.blog-card__footer {
  padding: 16px;
  text-align: center;
  border-top: 1px solid #f0f3f7;
}

.blog-card__link {
  color: #2196f3; /* Povodne modre "Precitat" */
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card__link {
  color: #ff6b00;
}





/* ================= ================= ================= =================  SUBPAGE: Clanok   ================= ================= ================= ================= */
/* ================= ================= ================= =================  SUBPAGE: Clanok   ================= ================= ================= ================= */
/* ================= ================= ================= =================  SUBPAGE: Clanok   ================= ================= ================= ================= */



/* ------------------------------------------ subpage-section--clanok */
.subpage-section--clanok {
  width: 100%;
  padding: 60px 0; /* Horny a dolny odstup celej sekcie */
  
  /* Nastavenie opakujúceho sa pozadia */
  background-image: url('clanky/blog-background.webp'); 
  background-repeat: repeat; /* Toto zabezpeci opakovanie pod sebou aj vedla seba */
  background-position: top center;
  background-attachment: scroll; /* Pozadie sa hybe spolu s textom */
  
  /* Ak chces, aby to nebolo prilis tmave, mozes pod to hodit farbu */
  background-color: #fcfdfe; 
}

.subpage-section--clanok .container {
    padding-left: 100px;  /* odstup zlava */
    padding-right: 100px; /* odstup zprava */
    box-sizing: border-box; /* zabezpeci, ze sa kontajner neroztiahne */
}

/* Maly modry nadpis - "NAS BLOG" */
.blok-title--overline {
  color: #2196f3; 
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;

  text-align: center;
  display: block;
  width: 100%;
}

/* Hlavnz nazov clanku */
.blok-title {
  color: #1a2b3c;
  font-size: 38px;
  font-weight: 850;
  line-height: 1.2;
  max-width: 850px; /* Toto je fajn, aby riadky neboli nekonecne dlhe*/
  margin: 15px auto; 
  text-align: center;
  display: block;
  /*width: 100%;*/
}

/* Meta info pod nadpisom */
.blok-title--meta {
  color: #999;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 80px; /* Vacsia medzera pod datumom, aby sa to nelepilo na text clanku */

  text-align: center;
  display: block;
  width: 100%;
}

/* ------------------------------------------ obsah clanku */
.subpage-section--clanok p {
    margin-bottom: 15px; /* Spodny okraj pod odsekmi (standardna textova medzera) */
}

/* Ak mate clanok rozdeleny 
do viacerych tagov <section> alebo divov nad sebou */
.subpage-section--clanok section, 
.subpage-section--clanok .row {
    padding-top: 20px;    /* Zmensi horny vnutorny odstup */
    padding-bottom: 20px; /* Zmensi spodny vnutorny odstup */
    margin-top: 0;
    margin-bottom: 0;
}

/* Ak medzeru pod obrazkom robi samotny obrazok */
.subpage-section--clanok img {
    margin-bottom: 15px; 
}

/* Nastavenie medzier pre nadpisy v clanku */ 
.subpage-section--clanok h3 {
    margin-top: 48px;     /* Dostatocny odstup od predchadzajuceho odseku */
    margin-bottom: 24px;  /* Jemny odstup od textu, ktory nasleduje */
    line-height: 1.3;     /* Dobry riadkovy rozostup, ak sa nadpis zlomi do dvoch riadkov */
}

/* medailonik autora na konci */
.autor-box {
    margin-top: 25px;
    font-style: italic;       /* Kurziva doda pocit podpisu */
    color: #6c757d;         /* Elegantna tmavosiva farba */
    font-weight: 600;         /* Mierne hrubsie pismo */
    border-top: 1px solid #e9ecef; /* Jemna deliaca ciara nad podpisom */
    padding-top: 15px;        /* Odstup od ciary */
    display: inline-block;    /* Aby ciara nebola cez cely web, ale len pod textom */
}

/* ------------------------------------------ tlacidlo na konci blogu */
.blog-end {
  max-width: 1200px;
  margin: 40px auto 40px; /* Trochu viac miesta nad tlacidlom po docitani */
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.blog-end-button {
  display: inline-flex; /* Flex, aby ikona a text boli pekne v rovine */
  align-items: center;
  
  /* Rozmery - zrusena min-width 280px */
  text-align: center;
  background-color: white;
  color: #2196F3;
  border: 2px solid #2196F3;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 24px; /* Mensi padding pre elegantnejsi vzhlad */
  border-radius: 8px; /* Menej "bublinove" zaoblenie */
  
  transition: all .2s ease;
}

.blog-end-button i {
  font-size: 14px; /* Ikona trochu mensia ako text */
}

.blog-end-button:hover {
  background: #2196F3;
  color: white;
  transform: translateX(-5px); /* Jemny posun dolava pri hoveri (efekt navratu) */
}

/* ------------------------------------------ Responzivny */

/* Pre tablety (text nebude prilis stlaceny) */
@media (max-width: 1024px) {
    .subpage-section--clanok .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}

/* Pre mobily */
@media (max-width: 768px) {
    .subpage-section--clanok .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}





/* ================= ================= ================= =================  BACKGROUND   ================= ================= ================= ================= */
/* ================= ================= ================= =================  BACKGROUND   ================= ================= ================= ================= */
/* ================= ================= ================= =================  BACKGROUND   ================= ================= ================= ================= */



/* -------------------------------------------- vlastnosti sekcie -- */
.main-section, .subpage-section {
  background-color: #fcfdfe;
  background-position: top center;
  background-repeat: repeat;
  background-size: 120% auto;

  padding: 60px 0;
}

.intro-section + .main-section,
.main-section + .main-section,
.main-section + .contact-form-section,
.intro-section + .subpage-section,
.subpage-section + .subpage-section,
.subpage-section + .cta-section,
.cta-section + .contact-form-section,
.subpage-section + .intro-section--bratislava-nearby,
.intro-section--bratislava-nearby + .cta-section
{ 
  border-top: 2px solid #eee; 
  /* border-top: 20px solid black; */
} 

.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
  /* margin: 0 auto; */
}

/* -------------------------------------------- main-page - background -- */
@media (min-width: 561px) { 
  .intro-section { background-image: url('img/background/bg-wall.webp'); }
}

@media (min-width: 561px) { 
  .home-services { /* Comu sa venujeme */
    background-image: url('img/background/a-bg.webp'); 
  }
  .slideshow-section { /* slideshow A */
    background-image: url('img/background/b-bg.webp');
  }
  .slideshow-section--reverse { /* slideshow B */
    background-image: url('img/background/c-bg.webp');
  }
  .section--home-blog { /* Blog uvod na main */
    background-image: url('img/background/d-bg.webp');
  }
  .faq-section { /* caste otazky */
    background-image: url('img/background/e-bg.webp');
  }
  .process { /* Ako prebieha servis */
    background-image: url('img/background/f-bg.webp');
  }
  .contact-form-section { /* Kontaktny formular */
    background-image: url('img/background/d-bg.webp');
  }
}

/* -------------------------------------------- servis okien - background -- */

.subpage-section--services { /* Ako funguje servis okien */
  background-image: url('img/background/a-bg.webp'); 
}
.subpage-section--problems { /* Najcastejsie problemy s oknami */
  background-image: url('img/background/b-bg.webp'); 
}
.subpage-section--benefits { /* Co vam vyriesi servis okien */
  background-image: url('img/background/c-bg.webp'); 
}
.subpage-section--why-us { /* Preco si vybrat prave nas */
  background-image: url('img/background/d-bg.webp'); 
}

/* -------------------------------------------- sietky proti hmyzu - background -- */

.subpage-section--offer { /* Co zahrna nasa ponuka */
  background-image: url('img/background/a-bg.webp'); 
}
.subpage-section--mesh-types { /* Typy sietok proti hmyzu */
  background-image: url('img/background/b-bg.webp'); 
}
.subpage-section--mesh-problems { /* Kedy sa oplati riesis sietky proti hmyzu */
  background-image: url('img/background/c-bg.webp'); 
}

/* -------------------------------------------- zaluzie a rolety - background -- */

.subpage-section--blinds { /* Zaluzie a rolety na mieru */
  background-image: url('img/background/a-bg.webp'); 
}
.subpage-section--blinds-types { /* Typy zaluzii a roliet */
  background-image: url('img/background/b-bg.webp'); 
}
.subpage-section--blinds-repair { /* Oprava zaluzii */
  background-image: url('img/background/c-bg.webp'); 
}

/* -------------------------------------------- Kde servisujeme / SEO - background -- */

.slideshow-section--ba { /* Kde robime servis okien */
  background-image: url('img/background/b-bg.webp'); 
}
.how-it-works-cta { /* ako prebieha servis / cta */
  background-image: url('img/background/c-bg.webp'); 
}

/* -------------------------------------------- Kde servisujeme / SEO - background -- */

.slideshow-section--ba { /* Kde robime servis okien */
  background-image: url('img/background/b-bg.webp'); 
}

/* -------------------------------------------- Caste otazky - farby -- */

/* povodne farby */
/* .faq-section { background: #f5f5f5; } */
.accordion { background-color: #eee; }

/* oddelovacia ciara */
.intro-section + .question-general    { border-top: 4px solid grey; }
.question-general + .question-service { border-top: 4px solid #0083C1; }
.question-service + .question-insect  { border-top: 4px solid #ed8446; }
.question-insect + .question-blinds   { border-top: 4px solid #00A8A8; }

/* nadpisy */
.question-service h2 { color: #0083C1; }
.question-insect h2  { color: #ed8446; }
.question-blinds h2  { color: #00A8A8; } 

/* -------------------------------------------- Caste otazky - background -- */

.question-general { /* Vseobecne otazky */
  background-image: url('img/background/bg-question-grey.webp'); 
}
.question-service { /* Servis okien */
  background-image: url('img/background/bg-question-blue.webp'); 
}
.question-insect { /* Sietky proti hmyzu */
  background-image: url('img/background/bg-question-orange.webp'); 
}
.question-blinds { /* Zaluzie a rolety */
  background-image: url('img/background/bg-question-green.webp'); 
}

/* -------------------------------------------- Galeria - background -- */

.video-gallery { /* Ako vyzeraju nase realizacie */
  background-image: url('img/background/b-bg.webp'); 
}

/* -------------------------------------------- Blog - background -- */

.subpage-section--blog { /* obsah stranky */
  background-image: url('img/background/d-bg.webp'); 
}











/* ================= ================= ================= =================  HAMBURGER / Mobile Header   ================= ================= ================= ================= */
/* ================= ================= ================= =================  HAMBURGER / Mobile Header   ================= ================= ================= ================= */
/* ================= ================= ================= =================  HAMBURGER / Mobile Header   ================= ================= ================= ================= */



.mobile-phone-cta {
  display: none;
}

@keyframes mobile-phone-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(47,109,225,.45),
      0 8px 18px rgba(47,109,225,.28);
  }

  70% {
    box-shadow:
      0 0 0 8px rgba(47,109,225,0),
      0 8px 18px rgba(47,109,225,.28);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(47,109,225,0),
      0 8px 18px rgba(47,109,225,.28);
  }
}

.nav-mobile-contact {
  display: none;
}

.hamburger { 
  display: none;

  width: 32px;
  height: 32px;

  background: #2F6DE1;
  border: none;
  border-radius: 8px;
  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;

  padding: 0;

  box-shadow: 0 8px 18px rgba(0,0,0,.18);

  transition:
    background-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.hamburger span {
  display: block;

  width: 18px;
  height: 3px;

  background: #fff;
  border-radius: 999px;

  transition:
    transform 0.28s ease,
    opacity 0.2s ease,
    background-color 0.25s ease;
}

.hamburger.is-active {
  background: #f4511e;
}

.hamburger.is-active span {
  background: #fff;
}
/* otvorený stav = X */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}



/* ================= ================= ================= ================= HAMBURGER - Responzivny ================= */

@media (max-width: 932px) {

.cta-bubble {
  display: none;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;

  position: relative;
  flex-wrap: nowrap;
}

.logo {
  justify-self: start;
  padding: 4px 6px;
}

.logo img {
  height: 24px;
  width: auto;
  max-width: 125px;
}

.mobile-phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;

  justify-self: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;
  background: #2F6DE1;
  color: white;
  text-decoration: none;

  font-size: 18px;

  box-shadow: 0 8px 18px rgba(47,109,225,.28);
  z-index: 2;

  animation: mobile-phone-pulse 2s infinite;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mobile-phone-cta:visited,
.mobile-phone-cta:focus,
.mobile-phone-cta:active {
  background: #2F6DE1;
  color: #fff;
  text-decoration: none;
}

.mobile-phone-cta:focus {
  outline: none;
}

.mobile-phone-cta:focus-visible {
  outline: 3px solid rgba(47,109,225,.35);
  outline-offset: 3px;
}

/* hover iba tam, kde je reálna myš */
@media (hover: hover) and (pointer: fine) {
  .mobile-phone-cta:hover {
    background: #f4511e;
    transform: scale(1.06);
    box-shadow: 0 12px 24px rgba(244,81,30,.28);
  }
}

  .hamburger {
    display: flex;
    justify-self: end;
  }

.nav-menu {
  display: flex;

  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;

  width: 100vw;
  max-width: 100vw;
  max-height: calc(100vh - 70px);
  overflow-y: auto;

  background: white;

  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;

  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);

  z-index: 999;

  /* zatvorené: celé menu je vysunuté doprava */
  transform: translateX(50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    visibility 0.35s ease;
}

.nav-menu.open {
  /* otvorené: menu je centrované na celú šírku obrazovky */
  transform: translateX(-50%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

  .nav-menu > a,
  .nav-menu > .dropdown > a {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    padding: 12px 14px;

    font-size: 18px;
    text-align: center;
    color: #222;
    text-decoration: none;

    border-radius: 10px;
    transform: none;
  }

/* mobil: stav hlavného dropdown nadpisu riadi iba .open */
.nav-menu > .dropdown > a {
  background: transparent;
  color: #222;
}

/* mobil: zruší zmenšovanie iba pri dropdown nadpisoch */
.nav-menu > .dropdown > a,
.nav-menu > .dropdown > a:hover,
.nav-menu > .dropdown > a:focus,
.nav-menu > .dropdown > a:active,
.nav-menu > .dropdown.open > a {
  transform: none;
  font-size: 18px;
}

/* keď je dropdown otvorený */
.nav-menu > .dropdown.open > a {
  background: #0083C1;
  color: white;
}

/* keď dropdown nie je otvorený, nedrž modré pozadie */
.nav-menu > .dropdown:not(.open) > a {
  background: transparent;
  color: #222;
}

  .nav-menu > a::before,
  .nav-menu > .dropdown > a::before {
    display: none;
  }

.nav-menu > a:hover {
  background: #0083C1;
  color: white;
  transform: none;
}

  .nav-item.dropdown {
    width: 100%;
  }

.nav-menu .nav-item.dropdown > .dropdown-menu {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;

  transform: none !important;

  display: none;

  width: 100%;
  max-width: 100%;
  min-width: 0;

  margin: 4px 0 0;
  padding: 6px 0;

  overflow: hidden;

  background: #f5f7fa;
  border-radius: 12px;
  box-shadow: none;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  box-sizing: border-box;
}

.nav-menu .nav-item.dropdown.open > .dropdown-menu {
  display: block;
}



  .nav-menu .dropdown-menu a {
    display: block;
    width: 100%;

    padding: 10px 16px;

    font-size: 16px;
    text-align: center;
    color: #222;
    text-decoration: none;

    white-space: normal;
    border-radius: 8px;
  }

  .nav-menu .dropdown-menu a:hover {
    background: #0083C1;
    color: white;
  }

  .nav-mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    margin-top: 24px;
    padding-top: 20px;

    border-top: 1px solid rgba(31,45,61,.12);
  }

  .nav-mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #2f4454;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
  }

  .nav-mobile-contact a i {
    color: #2F6DE1;
  }

  .nav-mobile-contact a:hover {
    color: #f4511e;
  }

.nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 998;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* výraznejší posúvač v otvorenom hamburger menu */
.nav-menu {
  scrollbar-width: auto;                 /* Firefox */
  scrollbar-color: #2F6DE1 #eef4ff;       /* Firefox */
}

.nav-menu::-webkit-scrollbar {
  width: 16px;
}

.nav-menu::-webkit-scrollbar-track {
  background: #eef4ff;
  border-radius: 999px;
}

.nav-menu::-webkit-scrollbar-thumb {
  background: #2F6DE1;
  border-radius: 999px;
  border: 2px solid #eef4ff;
}

.nav-menu::-webkit-scrollbar-thumb:hover {
  background: #f4511e;
}

}





/* ================= ================= ================= =================  RESPONSIVE PATCH / Hlavna stranka   ================= ================= ================= ================= */
/* ================= ================= ================= =================  RESPONSIVE PATCH / Hlavna stranka   ================= ================= ================= ================= */
/* ================= ================= ================= =================  RESPONSIVE PATCH / Hlavna stranka   ================= ================= ================= ================= */



/* ---------- zakladne bezpecne pravidla ---------- */
img,
video {
  max-width: 100%;
  height: auto;
}

.hero-inner,
.top-bar-inner,
.header-inner,
.slideshow-wrapper,
.slideshow-end,
.intro-section .intro-inner {
  width: 100%;
}

/* odporucam - pridat poistku proti horizontalnemu posunu stranky: */
html,
body {
  overflow-x: hidden;
}



/* =========================================================
   1) Menšie notebooky / veľké tablety
   ========================================================= */

@media (max-width: 1200px) {
  .top-bar-inner,
  .header-inner,
  .hero-inner,
  .slideshow-wrapper,
  .slideshow-end {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-menu {
    gap: 18px;
  }

  .nav-menu > a,
  .nav-menu > .dropdown > a {
    font-size: 18px;
  }

  .dropdown-menu a {
    font-size: 16px;
  }

  .hero {
    min-height: clamp(460px, 68vh, 700px);
    padding: 70px 0;
  }

  .hero-container {
    max-width: 620px;
    gap: 20px;
  }

  .hero-title {
    font-size: clamp(34px, 4.6vw, 56px);
  }

  .hero-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    margin-bottom: 20px;
  }

  .hero-actions {
    gap: 16px;
  }

  .button-hero-obhliadka,
  .button-hero-info {
    padding: 14px 24px;
  }

  .slideshow-wrapper {
    grid-template-columns: 300px 1fr;
    gap: 24px;
  }

  .slideshow-wrapper.reverse {
    grid-template-columns: 1fr 300px;
  }

  .slideshow-button {
    font-size: 20px;
    padding: 15px 16px;
    margin: 6px;
  }

  .slideshow-container img {
    height: 380px;
  }

  .slideshow-end-button {
    font-size: 20px;
    padding: 11px 30px;
  }

  .home-blog-layout {
    gap: 40px;
  }

  .process__grid {
    gap: 24px;
  }

  .footer {
    padding: 52px 6%;
  }
}

/* =========================================================
   2) Tablety / úzke notebooky
   ========================================================= */

@media (max-width: 1024px) {
  .page-content {
    padding-top: 82px;
  }

  .hero {
    min-height: clamp(430px, 62vh, 620px);
    padding: 62px 0;
    background-position: 78% center;
  }

  .hero::before {
    background: linear-gradient(
      to right,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.9) 42%,
      rgba(255,255,255,0.55) 68%,
      rgba(255,255,255,0.12) 100%
    );
  }

  .hero-title {
    font-size: clamp(32px, 5.2vw, 48px);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.55;
  }

  .intro-section {
    padding: 36px 0;
  }

  .intro-section p {
    font-size: 16px;
    line-height: 1.7;
  }

  .home-services__grid {
    gap: 22px;
  }

  .home-services .service-card {
    min-height: 130px;
    gap: 18px;
    padding: 16px 22px 16px 16px;
    border-radius: 24px;
  }

  .service-card__title {
    font-size: 20px;
  }

  .service-card__text {
    font-size: 15.5px;
  }

  .slideshow-wrapper,
  .slideshow-wrapper.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .slideshow-wrapper.reverse .slideshow-nav {
    order: 1;
  }

  .slideshow-wrapper.reverse .slideshow-container {
    order: 2;
  }

  .slideshow-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .slideshow-button {
    font-size: 18px;
    padding: 13px 14px;
    margin: 0;
    text-align: center;
  }

  .slideshow-button.active {
    transform: none;
  }

  .slideshow-container img {
    height: 330px;
  }

  .text-block {
    font-size: 16px;
    line-height: 1.55;
    padding: 16px;
  }

  .text-block h4 {
    padding-bottom: 8px;
  }

  .slideshow-end-button {
    min-width: 240px;
    font-size: 18px;
    padding: 11px 24px;
  }

  .section--home-blog h1 {
    font-size: 20px;
  }

  .home-blog-intro {
    padding: 30px 28px;
  }

  .process .section__title {
    margin-bottom: 54px;
  }

  .process-card {
    padding: 32px 22px 22px;
  }

  .contact-form-section {
    padding: 50px 22px 0;
  }

  .contact-form-title {
    font-size: 24px;
  }
}

/* =========================================================
   3) Tablety na výšku / veľké mobily
   ========================================================= */

@media (max-width: 768px) {
  .top-bar {
    height: 34px;
  }

  .top-bar-inner {
    height: 34px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .top-contact {
    gap: 18px;
    font-size: 13px;
  }

  .top-social {
    gap: 8px;
  }

  .top-social a {
    width: 24px;
    height: 24px;
  }

  .main-header {
    top: 34px;
  }

  .header-inner {
    padding: 5px 16px;
  }

  .logo img {
    height: 34px;
  }

  .nav-menu {
    gap: 12px;
  }

  .nav-menu > a,
  .nav-menu > .dropdown > a {
    font-size: 16px;
    letter-spacing: 0.1px;
  }

  .page-content {
    padding-top: 78px;
  }

  .hero {
    min-height: 420px;
    padding: 54px 0 48px;
    background-position: 70% center;
  }

  .hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-container {
    max-width: 540px;
    gap: 16px;
  }

  .hero-title {
    font-size: clamp(30px, 7vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.3px;
  }

  .hero-subtitle {
    max-width: 38ch;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .hero-actions {
    gap: 12px;
  }

  .button-hero-obhliadka,
  .button-hero-info {
    padding: 12px 18px;
    font-size: 15px;
    border-radius: 10px;
  }

  .intro-section {
    padding: 30px 0;
  }

  .intro-section .intro-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro-section p {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .home-services {
    padding: 44px 18px 50px;
  }

  .home-services .service-card {
    grid-template-columns: 96px 1fr;
    min-height: auto;
    padding: 16px;
    gap: 16px;
  }

  .service-card__media {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .service-card__icon {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .service-card__title {
    font-size: 19px;
  }

  .service-card__text {
    font-size: 15px;
    line-height: 1.5;
  }

  .service-card__link {
    font-size: 15px;
  }

  .slideshow-wrapper {
    padding-left: 18px;
    padding-right: 18px;
  }

  .slideshow-nav {
    grid-template-columns: 1fr 1fr;
  }

  .slideshow-button {
    font-size: 16px;
    padding: 12px;
    border-radius: 12px;
  }

  .slideshow-container img {
    height: 280px;
    border-radius: 16px;
  }

  .text-block {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 15px;
    padding: 14px;
  }

  .slideshow-end {
    padding-left: 18px;
    padding-right: 18px;
  }

  .slideshow-end-button {
    font-size: 17px;
    padding: 10px 20px;
    min-width: 220px;
  }

  .home-blog-layout {
    gap: 28px;
  }

  .home-blog-intro {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .home-blog-intro__title {
    font-size: 1.55rem;
  }

  .home-blog-intro__text {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .accordion {
    font-size: 17px;
    padding: 15px 46px 15px 50px;
  }

  .accordion::before {
    left: 16px;
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .faq-section p {
    font-size: 16px;
    line-height: 1.65;
    margin: 16px 0;
  }

  .process .section__title {
    margin-bottom: 42px;
  }

  .process__grid {
    gap: 22px;
  }

  .process-card h3 {
    font-size: 17px;
  }

  .process-card p {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  .contact-form-section {
    padding: 44px 18px 0;
  }

  .contact-form-title {
    font-size: 22px;
    letter-spacing: 0.05em;
  }

  .contact-form button {
    width: 70%;
  }

  .footer {
    padding: 44px 24px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom p:not(:last-child)::after {
    display: none;
  }
}

/* =========================================================
   4) Mobily
   ========================================================= */

@media (max-width: 560px) {
  body {
    line-height: 1.55;
  }

  .top-social {
    display: none;
  }

  .top-contact {
    width: 100%;
    justify-content: center;
    gap: 14px;
    font-size: 12px;
  }

  .top-contact a {
    gap: 5px;
  }

  .header-inner {
    min-height: 48px;
  }

  .logo {
    padding: 4px 6px;
  }

  .logo img {
    height: 30px;
  }

  .page-content {
    padding-top: 74px;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 42px;
    background-position: 64% center;
  }

  .hero::before {
    background: rgba(255,255,255,0.86);
  }

  .hero-container {
    max-width: 100%;
    gap: 14px;
  }

  .hero-title {
    max-width: 16ch;
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.12;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .button-hero-obhliadka,
  .button-hero-info {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
  }

  .intro-section {
    padding: 26px 0;
  }

  .intro-section p {
    font-size: 15px;
    line-height: 1.6;
  }

  .home-services {
    padding: 38px 16px 44px;
  }

  .home-services__grid {
    gap: 16px;
  }

  .home-services .service-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
  }

  .service-card__media {
    width: 68px;
    height: 68px;
    min-height: 68px;
  }

  .service-card__title {
    font-size: 18px;
  }

  .service-card__text {
    font-size: 14.5px;
  }

  .service-card__link {
    align-self: flex-start;
    margin-left: 0;
    font-size: 14.5px;
  }

  .slideshow-wrapper {
    padding: 18px 16px;
    gap: 18px;
  }

  .slideshow-nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .slideshow-button {
    font-size: 15px;
    padding: 11px 12px;
  }

  .slideshow-container img {
    height: 230px;
    border-radius: 14px 14px 0 0;
  }

  .text-block {
    position: static;
    border-radius: 0 0 14px 14px;
    font-size: 14.5px;
    line-height: 1.5;
    padding: 14px;
  }

  .slideshow-end {
    padding-left: 16px;
    padding-right: 16px;
  }

  .slideshow-end-button {
    width: 100%;
    min-width: 0;
    font-size: 16px;
    padding: 11px 16px;
    border-radius: 18px;
  }

  .section--home-blog {
    padding: 38px 0;
  }

  .section--home-blog h1 {
    font-size: 18px;
  }

  .home-blog-list {
    gap: 14px;
  }

  .home-blog-item {
    grid-template-columns: 88px 1fr;
    gap: 12px;
    padding: 11px;
    border-radius: 16px;
  }

  .home-blog-item__image {
    width: 88px;
    height: 70px;
    border-radius: 12px;
  }

  .home-blog-item__title {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .home-blog-intro {
    padding: 22px 18px;
  }

  .home-blog-intro__title {
    font-size: 1.4rem;
  }

  .home-blog-intro__text {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .section--home-blog .faq-more--blog {
    width: 100%;
    padding: 12px 16px;
  }

  .accordion {
    font-size: 16px;
    line-height: 1.35;
    padding: 14px 42px 14px 46px;
  }

  .panel {
    padding: 0 14px;
  }

  .faq-section p {
    font-size: 15px;
    margin: 14px 0;
  }

  .process .section__title {
    margin-bottom: 28px;
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-card {
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .process-card__number {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    font-size: 18px;
  }

  .process-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .process-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-form-section {
    padding: 38px 16px 0;
  }

  .contact-form-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .contact-form {
    gap: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .contact-form button {
    width: 100%;
    padding: 13px;
  }

  .contact-form-info {
    font-size: 13.5px;
  }

  .footer {
    padding: 38px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =========================================================
   5) Malé mobily
   ========================================================= */

@media (max-width: 420px) {
  .top-contact a[href^="mailto"] {
    display: none;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .button-hero-obhliadka,
  .button-hero-info {
    font-size: 14.5px;
  }

  .slideshow-container img {
    height: 210px;
  }

  .home-blog-item {
    grid-template-columns: 1fr;
  }

  .home-blog-item__image {
    width: 100%;
    height: 140px;
  }

  .accordion {
    font-size: 15px;
  }

  .footer-box h3 {
    font-size: 18px;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE – 320 px
   Google Chrome DevTools: 320px
   ========================================================= */

@media (max-width: 360px) {

  /* ---------- horná lišta ---------- */

  .top-bar {
    height: 32px;
  }

  .top-bar-inner {
    height: 32px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .top-contact {
    font-size: 11.5px;
    gap: 8px;
  }

  .top-contact a {
    gap: 4px;
  }

  .top-contact a i {
    font-size: 13px;
  }

  .top-contact a[href^="mailto"] {
    display: none;
  }


  /* ---------- hlavná hlavička ---------- */

  .main-header {
    top: 32px;
  }

  .header-inner {
    padding-left: 10px;
    padding-right: 10px;
    min-height: 46px;
  }

  .logo img {
    height: 28px;
  }

  .page-content {
    padding-top: 70px;
  }


  /* ---------- hero ---------- */

  .hero {
    padding: 38px 0 36px;
    background-position: 62% center;
  }

  .hero-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-title {
    font-size: 27px;
    line-height: 1.12;
    max-width: 15ch;
  }

  .hero-subtitle {
    font-size: 14.5px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 9px;
  }

  .button-hero-obhliadka,
  .button-hero-info {
    font-size: 14px;
    padding: 11px 13px;
    border-radius: 10px;
  }


  /* ---------- intro text ---------- */

  .intro-section {
    padding: 24px 0;
  }

  .intro-section .intro-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .intro-section p {
    font-size: 14.5px;
    line-height: 1.55;
  }


  /* ---------- karty služieb ---------- */

  .home-services {
    padding: 34px 14px 40px;
  }

  .home-services__grid {
    gap: 14px;
  }

  .home-services .service-card {
    padding: 14px;
    border-radius: 18px;
    gap: 12px;
  }

  .service-card__media {
    width: 60px;
    height: 60px;
    min-height: 60px;
    border-radius: 16px;
  }

  .service-card__icon {
    width: 36px;
    height: 36px;
    font-size: 17px;
    border-radius: 11px;
  }

  .service-card__title {
    font-size: 17px;
    line-height: 1.25;
  }

  .service-card__text {
    font-size: 14px;
    line-height: 1.45;
  }

  .service-card__link {
    font-size: 14px;
  }


  /* ---------- slideshow ---------- */

  .slideshow-wrapper {
    padding: 16px 14px;
    gap: 16px;
  }

  .slideshow-button {
    font-size: 14px;
    padding: 10px 11px;
    border-radius: 11px;
  }

  .slideshow-button:hover span {
    padding-right: 18px;
  }

  .slideshow-button span:after {
    right: -15px;
  }

  .slideshow-container img {
    height: 190px;
  }

  .text-block {
    font-size: 14px;
    line-height: 1.45;
    padding: 12px;
  }

  .text-block h4 {
    padding-bottom: 6px;
  }

  .slideshow-end {
    padding-left: 14px;
    padding-right: 14px;
  }

  .slideshow-end-button {
    font-size: 15px;
    padding: 10px 14px;
    border-radius: 16px;
  }


  /* ---------- blog ---------- */

  .section--home-blog {
    padding: 34px 0;
  }

  .section--home-blog h1 {
    font-size: 16px;
    letter-spacing: 0.6px;
  }

  .home-blog-intro {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .home-blog-intro__title {
    font-size: 1.28rem;
    line-height: 1.18;
  }

  .home-blog-intro__text {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .home-blog-item {
    padding: 10px;
    border-radius: 15px;
  }

  .home-blog-item__image {
    height: 125px;
  }

  .home-blog-item__title {
    font-size: 0.86rem;
  }

  .section--home-blog .faq-more--blog {
    font-size: 0.9rem;
    padding: 11px 14px;
  }


  /* ---------- FAQ ---------- */

  .accordion {
    font-size: 14.5px;
    line-height: 1.3;
    padding: 13px 38px 13px 42px;
  }

  .accordion::before {
    left: 14px;
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .panel {
    padding: 0 12px;
  }

  .faq-section p {
    font-size: 14px;
    line-height: 1.5;
    margin: 12px 0;
  }


  /* ---------- ako prebieha servis ---------- */

  .process .section__title {
    margin-bottom: 24px;
  }

  .process__grid {
    gap: 14px;
  }

  .process-card {
    padding: 20px 16px 16px;
    border-radius: 18px;
  }

  .process-card__number {
    width: 44px;
    height: 44px;
    font-size: 17px;
    margin-bottom: 12px;
  }

  .process-card h3 {
    font-size: 15.5px;
    line-height: 1.3;
  }

  .process-card p {
    font-size: 13.5px;
    line-height: 1.45;
  }


  /* ---------- kontaktný formulár ---------- */

  .contact-form-section {
    padding: 34px 14px 0;
  }

  .contact-form-title {
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0.04em;
  }

  .contact-form-info {
    font-size: 13px;
  }

  .contact-form-moje_kontakty {
    gap: 8px;
  }

  .contact-form label {
    font-size: 13px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 13.5px;
    padding: 10px 12px;
  }

  .input-group input,
  .input-group textarea {
    padding-left: 38px;
  }

  .input-group i {
    left: 12px;
    font-size: 16px;
  }

  .cf_required::after {
    font-size: 12px;
    margin-left: 4px;
  }

  .contact-form button {
    font-size: 14px;
    padding: 12px;
  }


  /* ---------- pätička ---------- */

  .footer {
    padding: 34px 16px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-box h3 {
    font-size: 17px;
  }

  .footer-box p,
  .footer-box li {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}








































/* ================= ================= ================= =================
   RESPONSIVE PATCH / PODSTRÁNKY + CHÝBAJÚCE ČASTI
   VLOŽIŤ ÚPLNE NA KONIEC CSS
================= ================= ================= ================= */


/* =========================================================
   ZÁKLADNÁ POISTKA
   ========================================================= */

img,
video,
iframe {
  max-width: 100%;
}

.container {
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
}

.main-section,
.subpage-section {
  overflow: hidden;
}


/* =========================================================
   1) Menšie notebooky / veľké tablety
   ========================================================= */

@media (max-width: 1200px) {

  .container {
    padding-inline: 24px;
  }

  .main-section,
  .subpage-section {
    padding: 54px 0;
    background-size: 150% auto;
  }

  .section__title {
    font-size: 38px;
    margin-bottom: 46px;
  }

  .section__subtitle,
  .section__intro {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 34px;
  }

  /* všeobecné kartové gridy */
  .new__card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .new__card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .new__card-grid-2 {
    gap: 24px;
  }

  /* podstránkové riadky text + obrázok */
  .row {
    gap: 50px;
    margin-bottom: 50px;
  }

  .row__text h3 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .row__text p,
  .row__text ul {
    font-size: 16px;
    line-height: 1.7;
  }

  .row__text p {
    margin-bottom: 24px;
  }

  .row__image img {
    max-height: 360px;
  }

  /* karty */
  .text-card,
  .picture-card,
  .why-card {
    padding: 22px;
  }

  .text-card h3,
  .picture-card h3,
  .why-card h3 {
    font-size: 19px;
  }

  .text-card p,
  .picture-card p,
  .why-card p {
    font-size: 16px;
    line-height: 1.65;
  }

  .picture-card .card-image {
    height: 260px;
  }

  /* blog karty */
  .blog-card {
    max-width: none;
  }

  .blog-card__image-wrap {
    height: 200px;
  }

  .blog-card__content {
    padding: 22px;
  }

  .blog-card__title {
    font-size: 18px;
    line-height: 1.5;
  }
}


/* =========================================================
   2) Tablety / úzke notebooky
   ========================================================= */

@media (max-width: 1024px) {

  .main-section,
  .subpage-section {
    padding: 48px 0;
    background-size: 180% auto;
  }

  .section__title {
    font-size: 34px;
    margin-bottom: 38px;
  }

  .section__subtitle {
    margin: -22px auto 32px;
    font-size: 16px;
  }

  /* klasický hero na podstránkach */
  .subpage---hero {
    height: 360px;
    background-position: 78% center;
  }

  .subpage---hero::before {
    background: linear-gradient(
      to right,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.90) 42%,
      rgba(255,255,255,0.58) 68%,
      rgba(255,255,255,0.16) 100%
    );
  }

  .subpage---hero-inner {
    padding-inline: 24px;
  }

  .subpage---hero-container {
    max-width: 560px;
  }

  .subpage---hero-title {
    font-size: clamp(32px, 5vw, 46px);
    margin-bottom: 18px;
  }

  .subpage---hero-subtitle {
    font-size: 19px;
    line-height: 1.55;
  }

  /* blog hero */
  .subpage---hero--blog {
    height: 340px;
    padding-inline: 24px;
  }

  .subpage---hero--blog .intro__overline {
    font-size: 26px;
  }

  .subpage---hero--blog .hero-blog-title {
    font-size: 34px;
    line-height: 1.15;
  }

  /* breadcrumb */
  .breadcrumbs {
    font-size: 15.5px;
    padding: 12px 0;
  }

  /* riadky */
  .row {
    gap: 36px;
    margin-bottom: 42px;
  }

  .row__image img {
    max-height: 330px;
  }

  /* pred/po slider */
  .custom-ba-container {
    height: 330px;
  }

  /* SEO blok Bratislava */
  .split-content {
    gap: 24px;
    padding: 18px;
  }

  .text-col h3 {
    font-size: 24px;
  }

  .text-col p {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .map-col {
    max-width: 390px;
  }

  .slideshow-nav-top {
    gap: 8px;
    margin-bottom: 24px;
  }

  .slideshow-nav-top .slideshow-button {
    font-size: 17px;
    padding: 12px 14px;
  }

  /* GDPR hero */
  .subpage--gdpr .subpage---hero {
    min-height: 430px;
    padding: 70px 20px;
  }

  .subpage--gdpr .subpage---hero-container {
    max-width: 500px;
    padding: 34px 30px;
  }

  .subpage--gdpr .subpage---hero-title {
    font-size: clamp(34px, 5vw, 50px);
    line-height: 1.05;
  }

  /* galéria */
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    column-gap: 24px;
    row-gap: 30px;
  }
}


/* =========================================================
   3) Tablety na výšku / veľké mobily
   ========================================================= */

@media (max-width: 900px) {

  .main-section,
  .subpage-section {
    padding: 44px 0;
  }

  .section__title {
    font-size: 32px;
    margin-bottom: 34px;
  }

  .section__subtitle,
  .section__intro {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  /* gridy */
  .new__card-grid-4,
  .new__card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .new__card-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* text + obrázok pod sebou */
  .row,
  .row.row--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
    direction: ltr;
  }

  .row.row--reverse .row__text,
  .row.row--reverse .row__image {
    direction: ltr;
  }

  .row__text {
    order: 1;
  }

  .row__image,
  .custom-ba-container {
    order: 2;
  }

  .row__text h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .row__text p,
  .row__text ul {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .row__text p {
    margin-bottom: 20px;
  }

  .row__text li {
    margin-bottom: 8px;
  }

  .row__image {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }

  .row__image img {
    max-height: 320px;
    width: 100%;
  }

  .image-overlay {
    bottom: 14px;
    left: 14px;
    padding: 8px 12px;
    font-size: 13.5px;
  }

  .custom-ba-container {
    height: 300px;
    max-width: 620px;
    margin-inline: auto;
  }

  /* karty */
  .text-card,
  .picture-card,
  .why-card {
    padding: 20px;
    border-radius: 16px;
  }

  .text-card h3,
  .picture-card h3,
  .why-card h3 {
    font-size: 18px;
    line-height: 1.35;
  }

  .text-card p,
  .picture-card p,
  .why-card p {
    font-size: 15.5px;
    line-height: 1.6;
  }

  .picture-card .card-image {
    height: 240px;
  }

  .text-card__title {
    font-size: 18px;
    gap: 10px;
  }

  .text-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .text-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .why-grid {
    gap: 24px;
  }

  .why-card {
    max-width: none;
  }

  .card__top-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }

  .card__image {
    height: 170px;
  }

  .card__image-small img {
    max-width: 180px;
    transform: scale(1.1);
  }

  /* SEO */
  .split-content {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px;
  }

  .map-col {
    max-width: 360px;
  }

  .text-col {
    padding: 0;
  }

  .text-col h3 {
    font-size: 23px;
    line-height: 1.25;
  }

  .seo-features li {
    font-size: 14.5px;
  }

  .btn-small {
    width: 100%;
    text-align: center;
  }

  .cta-card,
  .cta-how-card {
    padding: 22px 24px;
  }

  .cta-title,
  .cta-how-title {
    font-size: 18px;
  }

  /* blog podstránka */
  .subpage-section--blog .new__card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card__image-wrap {
    height: 185px;
  }

  .blog-card__content {
    padding: 18px;
  }

  .blog-card__title {
    font-size: 17px;
    line-height: 1.45;
  }

  .blog-card__footer {
    padding: 14px;
  }

  /* galéria */
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    column-gap: 20px;
    row-gap: 26px;
  }

  .video-play {
    width: 54px;
    height: 54px;
    font-size: 23px;
  }

  .video-card__overlay {
    padding: 16px;
  }

  .video-card__content h3 {
    font-size: 16px;
  }
}


/* =========================================================
   4) Mobily
   ========================================================= */

@media (max-width: 768px) {

  .container {
    padding-inline: 18px;
  }

  .main-section,
  .subpage-section {
    padding: 40px 0;
    background-size: auto;
  }

  .section__title {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 30px;
  }

  .section__subtitle {
    margin: -14px auto 26px;
    font-size: 15px;
  }

  .section__intro {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* podstránkový hero */
  .subpage---hero {
    height: 310px;
    background-position: 70% center;
  }

  .subpage---hero::before {
    background: rgba(255,255,255,0.84);
  }

  .subpage---hero-inner {
    padding-inline: 18px;
  }

  .subpage---hero-container {
    max-width: 100%;
  }

  .subpage---hero-title {
    font-size: 32px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .subpage---hero-subtitle {
    font-size: 16.5px;
    line-height: 1.5;
  }

  /* blog hero */
  .subpage---hero--blog {
    height: 300px;
    padding-inline: 18px;
  }

  .subpage---hero--blog .intro__overline {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .subpage---hero--blog .hero-blog-title {
    font-size: 30px;
    line-height: 1.15;
  }

  /* breadcrumbs */
  .breadcrumbs {
    font-size: 14.5px;
    padding: 10px 0;
  }

  .breadcrumbs .container {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  /* gridy */
  .new__card-grid-4,
  .new__card-grid-3,
  .new__card-grid-2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* row */
  .row {
    gap: 22px;
    margin-bottom: 34px;
  }

  .row__text h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .row__text p,
  .row__text ul {
    font-size: 15px;
    line-height: 1.6;
  }

  .row__text p {
    margin-bottom: 18px;
  }

  .row__image img {
    max-height: 280px;
    border-radius: 14px;
  }

  .custom-ba-container {
    height: 260px;
    border-radius: 14px;
  }

  .custom-ba-container::after {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .cba-label {
    bottom: 12px;
    left: 12px;
    padding: 7px 10px;
    font-size: 12.5px;
  }

  .cba-l-after {
    right: 12px;
  }

  /* karty */
  .text-card,
  .picture-card,
  .why-card {
    padding: 18px;
    border-radius: 15px;
  }

  .text-card h3,
  .picture-card h3,
  .why-card h3 {
    font-size: 17.5px;
  }

  .text-card p,
  .picture-card p,
  .why-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .picture-card .card-image {
    height: 220px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* SEO */
  .slideshow-nav-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .slideshow-nav-top .slideshow-button {
    width: 100%;
    margin: 0;
    font-size: 15px;
    padding: 10px;
  }

  .split-content {
    padding: 16px;
    border-radius: 14px;
  }

  .map-col {
    max-width: 320px;
  }

  .text-col h3 {
    font-size: 21px;
  }

  .text-col p {
    font-size: 15px;
    line-height: 1.6;
  }

  .location-tag {
    font-size: 11px;
  }

  .seo-features li {
    font-size: 14px;
    align-items: flex-start;
  }

  /* CTA karty */
  .cta-section,
  .how-it-works-cta {
    padding: 36px 0;
  }

  .cta-card,
  .cta-how-card {
    padding: 20px;
    border-radius: 14px;
  }

  .cta-icon-wrapper,
  .cta-how-icon-wrapper {
    width: 52px;
    height: 52px;
  }

  .cta-title,
  .cta-how-title {
    font-size: 17px;
    line-height: 1.3;
  }

  .cta-label,
  .cta-how-label {
    font-size: 12px;
  }

  .cta-link-text,
  .cta-how-link-text {
    font-size: 14px;
  }

  /* GDPR */
  .subpage--gdpr .subpage---hero {
    min-height: 360px;
    padding: 48px 18px;
  }

  .subpage--gdpr .subpage---hero-container {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .subpage--gdpr .subpage---hero-title {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  .subpage--gdpr .subpage---hero-subtitle {
    margin-top: 14px;
    font-size: 16px;
  }

  .gdpr-content h3 {
    font-size: 18px;
    margin-top: 30px;
  }

  .gdpr-content p {
    font-size: 15px;
    line-height: 1.65;
  }

  .subpage-section--cookies .faq-item__content {
    padding: 22px;
    border-radius: 14px;
  }

  /* blog */
  .subpage-section--blog {
    padding-top: 34px;
  }

  .subpage-section--blog .new__card-grid-3 {
    grid-template-columns: 1fr;
  }

  .blog-card {
    width: 100%;
  }

  .blog-card__image-wrap {
    height: 200px;
  }

  .blog-card__title {
    font-size: 16.5px;
    line-height: 1.45;
  }

  .blog-card__link {
    font-size: 15px;
  }

  /* článok */
  .subpage-section--clanok {
    padding: 42px 0;
  }

  .blok-title--overline {
    font-size: 15px;
    letter-spacing: 1.4px;
  }

  .blok-title {
    font-size: 30px;
    line-height: 1.18;
  }

  .blok-title--meta {
    margin-bottom: 42px;
  }

  .subpage-section--clanok h3 {
    margin-top: 34px;
    margin-bottom: 16px;
    font-size: 21px;
  }

  .subpage-section--clanok p {
    font-size: 15px;
    line-height: 1.65;
  }

  /* galéria */
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 20px;
  }

  .video-card {
    border-radius: 14px;
    border-width: 2px;
  }

  .video-card__overlay {
    padding: 14px;
  }

  .video-card__content h3 {
    font-size: 15px;
  }

  .video-card__content p {
    font-size: 12.5px;
  }

  .video-play {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .video-modal__content {
    max-width: 94vw;
    max-height: 86vh;
    transform: translateY(0);
  }

  .video-wrapper,
  .video-wrapper video,
  .video-wrapper iframe,
  .video-wrapper > * {
    border-radius: 18px;
  }
}


/* =========================================================
   5) Malé mobily
   ========================================================= */

@media (max-width: 560px) {

  .container {
    padding-inline: 16px;
  }

  .main-section,
  .subpage-section {
    padding: 36px 0;
  }

  .section__title {
    font-size: 27px;
    line-height: 1.16;
    margin-bottom: 26px;
  }

  .section__subtitle,
  .section__intro {
    font-size: 14.5px;
    line-height: 1.55;
  }

  /* podstránkový hero */
  .subpage---hero {
    height: 260px;
    background-position: 68% center;
  }

  .subpage---hero-title {
    font-size: 28px;
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .subpage---hero-subtitle {
    font-size: 15px;
    line-height: 1.45;
  }

  /* blog hero */
  .subpage---hero--blog {
    height: 250px;
  }

  .subpage---hero--blog .intro__overline {
    font-size: 18px;
  }

  .subpage---hero--blog .hero-blog-title {
    font-size: 25px;
  }

  .breadcrumbs {
    font-size: 13.5px;
  }

  /* row */
  .row {
    gap: 18px;
    margin-bottom: 30px;
  }

  .row__text h3 {
    font-size: 19px;
  }

  .row__text p,
  .row__text ul {
    font-size: 14.5px;
    line-height: 1.55;
  }

  .row__text p {
    margin-bottom: 16px;
  }

  .row__image img {
    max-height: 240px;
    border-radius: 13px;
  }

  .image-overlay {
    bottom: 10px;
    left: 10px;
    padding: 7px 10px;
    font-size: 12.5px;
    border-radius: 5px;
  }

  .custom-ba-container {
    height: 230px;
  }

  .cba-label {
    font-size: 11.5px;
    padding: 6px 8px;
  }

  .cba-l-before {
    max-width: 45%;
    white-space: normal;
  }

  .cba-l-after {
    max-width: 45%;
    white-space: normal;
    text-align: right;
  }

  /* karty */
  .text-card,
  .picture-card,
  .why-card {
    padding: 16px;
    border-radius: 14px;
  }

  .text-card h3,
  .picture-card h3,
  .why-card h3 {
    font-size: 16.5px;
  }

  .text-card p,
  .picture-card p,
  .why-card p {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .picture-card .card-image {
    height: 185px;
  }

  .text-card__title {
    align-items: flex-start;
    font-size: 16.5px;
  }

  .text-card__icon {
    width: 34px;
    height: 34px;
  }

  .text-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .card__top-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .card__image {
    height: 145px;
  }

  /* SEO */
  .slideshow-nav-top {
    grid-template-columns: 1fr;
  }

  .slideshow-nav-top .slideshow-button {
    font-size: 14.5px;
    padding: 10px 12px;
  }

  .split-content {
    padding: 14px;
  }

  .map-col {
    max-width: 260px;
  }

  .text-col h3 {
    font-size: 19px;
  }

  .text-col p {
    font-size: 14.5px;
  }

  .seo-features li {
    font-size: 13.5px;
  }

  /* CTA karty */
  .cta-card,
  .cta-how-card {
    padding: 18px;
  }

  .cta-left,
  .cta-how-left {
    gap: 14px;
  }

  .cta-right,
  .cta-how-right {
    gap: 10px;
  }

  .cta-title,
  .cta-how-title {
    font-size: 16px;
  }

  .cta-arrow,
  .cta-how-arrow {
    width: 34px;
    height: 34px;
  }

  /* GDPR */
  .subpage--gdpr .subpage---hero {
    min-height: 310px;
    padding: 36px 16px;
  }

  .subpage--gdpr .subpage---hero-container {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .subpage--gdpr .subpage---hero-title {
    font-size: 27px;
  }

  .subpage-section--cookies .faq-item__content {
    padding: 18px;
  }

  /* blog */
  .blog-card__image-wrap {
    height: 170px;
  }

  .blog-card__content {
    padding: 16px;
  }

  .blog-card__title {
    font-size: 15.5px;
  }

  .blog-card__footer {
    padding: 12px;
  }

  /* článok */
  .subpage-section--clanok {
    padding: 36px 0;
  }

  .blok-title {
    font-size: 26px;
  }

  .blok-title--meta {
    margin-bottom: 34px;
  }

  .blog-end {
    margin: 28px auto;
    padding-inline: 16px;
  }

  .blog-end-button {
    width: 100%;
    justify-content: center;
  }

  /* galéria */
  .video-grid {
    column-gap: 12px;
    row-gap: 16px;
  }

  .video-card__overlay {
    padding: 12px;
  }

  .video-card__content h3 {
    font-size: 14px;
    line-height: 1.25;
  }

  .video-card__content p {
    font-size: 12px;
    line-height: 1.35;
  }

  .video-play {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .video-close {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}


/* =========================================================
   6) Extra malé mobily – 320 až 420 px
   ========================================================= */

@media (max-width: 420px) {

  .container {
    padding-inline: 14px;
  }

  .main-section,
  .subpage-section {
    padding: 32px 0;
  }

  .section__title {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .section__subtitle {
    margin-top: -10px;
  }

  .subpage---hero {
    height: 230px;
  }

  .subpage---hero-inner {
    padding-inline: 14px;
  }

  .subpage---hero-title {
    font-size: 25px;
    max-width: 18ch;
  }

  .subpage---hero-subtitle {
    font-size: 14.5px;
  }

  .subpage---hero--blog {
    height: 220px;
  }

  .subpage---hero--blog .intro__overline {
    font-size: 16px;
  }

  .subpage---hero--blog .hero-blog-title {
    font-size: 22px;
    line-height: 1.15;
  }

  .row__text h3 {
    font-size: 18px;
  }

  .row__text p,
  .row__text ul {
    font-size: 14px;
  }

  .row__image img {
    max-height: 210px;
  }

  .custom-ba-container {
    height: 210px;
  }

  .custom-ba-container::after {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .picture-card .card-image {
    height: 165px;
  }

  .text-card,
  .picture-card,
  .why-card {
    padding: 14px;
  }

  .text-card p,
  .picture-card p,
  .why-card p {
    font-size: 14px;
  }

  .blog-card__image-wrap {
    height: 155px;
  }

  .blog-card__title {
    font-size: 15px;
  }

  .split-content {
    padding: 12px;
  }

  .map-col {
    max-width: 230px;
  }

  .text-col h3 {
    font-size: 18px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin-inline: auto;
  }

  .video-card {
    max-width: 240px;
  }
}


/* =========================================================
   7) Úplné minimum – 360 px a menej
   ========================================================= */

@media (max-width: 360px) {

  .section__title {
    font-size: 22px;
  }

  .subpage---hero {
    height: 215px;
  }

  .subpage---hero-title {
    font-size: 23px;
  }

  .subpage---hero-subtitle {
    font-size: 14px;
  }

  .subpage---hero--blog {
    height: 205px;
  }

  .subpage---hero--blog .hero-blog-title {
    font-size: 20px;
  }

  .breadcrumbs {
    font-size: 12.5px;
  }

  .row {
    gap: 16px;
    margin-bottom: 26px;
  }

  .row__image img {
    max-height: 190px;
  }

  .custom-ba-container {
    height: 190px;
  }

  .cba-label {
    font-size: 10.5px;
    padding: 5px 7px;
  }

  .picture-card .card-image {
    height: 145px;
  }

  .blog-card__image-wrap {
    height: 140px;
  }

  .blog-card__content {
    padding: 14px;
  }

  .blog-card__title {
    font-size: 14.5px;
  }

  .text-col h3 {
    font-size: 17px;
  }

  .text-col p,
  .gdpr-content p,
  .subpage-section--clanok p {
    font-size: 13.5px;
  }
}






































/* =========================================================
   FIX: contact form overflow na 320 px
   VLOŽIŤ ÚPLNE NA KONIEC CSS
========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

/* poistka proti tomu, aby grid/flex deti roztláčali stránku */
.contact-form-grid,
.contact-form-grid > *,
.contact-form,
.contact-form-info,
.contact-form .input-group {
  min-width: 0;
  max-width: 100%;
}

/* inputy musia vedieť reálne zmenšiť šírku */
.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  min-width: 0;
  max-width: 100%;
}


/* ---------- malé mobily ---------- */

@media (max-width: 420px) {

  .contact-form-section {
    padding: 32px 10px 0;
  }

  .contact-form-section .container {
    padding-inline: 0;
  }

  .contact-form-grid {
    gap: 16px;
  }

  .contact-form-info,
  .contact-form {
    padding: 18px;
    border-radius: 18px;
  }

  .contact-form-title {
    font-size: 17px;
    line-height: 1.25;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
  }

  .contact-form label {
    font-size: 13px;
  }

  .cf_required::after {
    font-size: 12px;
    margin-left: 4px;
  }

  .contact-form .input-group i {
    left: 12px;
    font-size: 15px;
  }

  .contact-form .input-group i.textarea-icon {
    top: 13px;
  }

  .contact-form input:not([type="checkbox"]),
  .contact-form textarea {
    font-size: 13px;
    padding: 10px 10px 10px 36px;
    border-radius: 8px;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 13px;
  }

  .contact-form textarea {
    min-height: 105px;
  }

  .checkbox-consent {
    font-size: 12.5px;
    line-height: 1.45;
    gap: 8px;
  }

  .contact-form button {
    width: 100%;
    margin-top: 24px;
    font-size: 14px;
    padding: 12px;
  }
}


/* ---------- úplne malé mobily 320–360 px ---------- */

@media (max-width: 360px) {

  .contact-form-section {
    padding-inline: 8px;
  }

  .contact-form-info,
  .contact-form {
    padding: 16px;
    border-radius: 16px;
  }

  .contact-form-title {
    font-size: 16px;
  }

  .contact-form input:not([type="checkbox"]),
  .contact-form textarea {
    font-size: 12.5px;
    padding: 9px 9px 9px 34px;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 12.5px;
  }

  .contact-form .input-group i {
    left: 11px;
    font-size: 14px;
  }
}





/* =========================================================
   FIX: 2 karty vedľa seba na tablete / 768 px
   Typy sieťok, žalúzie, servis - new__card-grid-2
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .subpage--sietky .subpage-section--mesh-types .new__card-grid-2,
  .subpage--zaluzie .subpage-section--blinds-types .new__card-grid-2,
  .subpage--servis .subpage-section--problems .new__card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .subpage--sietky .subpage-section--mesh-types .picture-card,
  .subpage--zaluzie .subpage-section--blinds-types .picture-card,
  .subpage--servis .subpage-section--problems .picture-card {
    padding: 18px;
  }

  .subpage--sietky .subpage-section--mesh-types .picture-card .card-image,
  .subpage--zaluzie .subpage-section--blinds-types .picture-card .card-image,
  .subpage--servis .subpage-section--problems .picture-card .card-image {
    height: 190px;
  }

  .subpage--sietky .subpage-section--mesh-types .picture-card h3,
  .subpage--zaluzie .subpage-section--blinds-types .picture-card h3,
  .subpage--servis .subpage-section--problems .picture-card h3 {
    font-size: 18px;
  }

  .subpage--sietky .subpage-section--mesh-types .picture-card p,
  .subpage--zaluzie .subpage-section--blinds-types .picture-card p,
  .subpage--servis .subpage-section--problems .picture-card p {
    font-size: 15px;
    line-height: 1.55;
  }
}


/* Pod 640 px už nech ide 1 karta na riadok */
@media (max-width: 640px) {

  .subpage--sietky .subpage-section--mesh-types .new__card-grid-2,
  .subpage--zaluzie .subpage-section--blinds-types .new__card-grid-2,
  .subpage--servis .subpage-section--problems .new__card-grid-2 {
    grid-template-columns: 1fr;
  }
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
/* =========================================================
   FIX: SIEŤKY - tablet layout text + menší obrázok vedľa seba
   641–900 px = text a obrázok vedľa seba v pomere cca 2:1
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  /* Sekcia: Čo zahŕňa naša ponuka */
  .subpage--sietky .subpage-section--offer .row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(180px, 1fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 38px;
    direction: ltr;
  }

  /* Reverzný riadok: obrázok vľavo, text vpravo */
  .subpage--sietky .subpage-section--offer .row.row--reverse {
    grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr);
    direction: ltr;
  }

  .subpage--sietky .subpage-section--offer .row.row--reverse .row__image {
    order: 1;
  }

  .subpage--sietky .subpage-section--offer .row.row--reverse .row__text {
    order: 2;
  }

  /* Texty zmenšiť, aby to pri 768 px nebolo natlačené */
  .subpage--sietky .subpage-section--offer .row__text h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .subpage--sietky .subpage-section--offer .row__text p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .subpage--sietky .subpage-section--offer .row__text p:last-child {
    margin-bottom: 0;
  }

  /* Obrázky menšie a kontrolované */
  .subpage--sietky .subpage-section--offer .row__image {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .subpage--sietky .subpage-section--offer .row__image img {
    width: 100%;
    height: 210px;
    max-height: 210px;
    object-fit: cover;
    border-radius: 14px;
  }

  /* Špeciálny obrázok v sekcii sieťky - pôvodne má width:auto */
  .subpage--sietky .subpage-section--offer #obrazok--sietky-2 {
    width: 100%;
    height: 210px;
    max-height: 210px;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .subpage--sietky .subpage-section--offer .image-overlay {
    left: 10px;
    bottom: 10px;
    padding: 7px 11px;
    font-size: 12.5px;
    border-radius: 6px;
  }
}


/* =========================================================
   768 px špeciálne doladenie
========================================================= */

@media (min-width: 721px) and (max-width: 820px) {

  .subpage--sietky .subpage-section--offer .row {
    grid-template-columns: minmax(0, 2fr) minmax(200px, 1fr);
    gap: 22px;
  }

  .subpage--sietky .subpage-section--offer .row.row--reverse {
    grid-template-columns: minmax(200px, 1fr) minmax(0, 2fr);
  }

  .subpage--sietky .subpage-section--offer .row__image img,
  .subpage--sietky .subpage-section--offer #obrazok--sietky-2 {
    height: 220px;
    max-height: 220px;
  }
}


/* =========================================================
   Pod 640 px už nech ide normálne pod seba
========================================================= */

@media (max-width: 640px) {

  .subpage--sietky .subpage-section--offer .row,
  .subpage--sietky .subpage-section--offer .row.row--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    direction: ltr;
  }

  .subpage--sietky .subpage-section--offer .row.row--reverse .row__text,
  .subpage--sietky .subpage-section--offer .row.row--reverse .row__image {
    order: initial;
  }

  .subpage--sietky .subpage-section--offer .row__image img,
  .subpage--sietky .subpage-section--offer #obrazok--sietky-2 {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
  }
}


/* =========================================================
   Špeciálny obrázok v sekcii:
   Kedy sa oplatí riešiť sieťky proti hmyzu
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .subpage--sietky .subpage-section--mesh-problems .picture-card--sietky-problem {
    min-height: 100%;
    padding: 14px;
  }

  .subpage--sietky .subpage-section--mesh-problems .picture-card--sietky-problem .row__image {
    height: 100%;
    min-height: 190px;
  }

  .subpage--sietky .subpage-section--mesh-problems .picture-card--sietky-problem .row__image img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    border-radius: 12px;
  }

  .subpage--sietky .subpage-section--mesh-problems .picture-card--sietky-problem .image-overlay {
    left: 10px;
    bottom: 10px;
    padding: 7px 11px;
    font-size: 12.5px;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------*/
/* =========================================================
   FIX: Žalúzie - Oprava žalúzií
   Na tablete (641–900 px) nech sú 2 karty vedľa seba
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .subpage--zaluzie .subpage-section--blinds-repair .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }

  .subpage--zaluzie .subpage-section--blinds-repair .why-card {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 26px 20px 18px;
    border-radius: 18px;
  }

  .subpage--zaluzie .subpage-section--blinds-repair .why-card h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .subpage--zaluzie .subpage-section--blinds-repair .why-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .subpage--zaluzie .subpage-section--blinds-repair .card__image {
    height: 190px;
    margin-top: 8px;
  }

  .subpage--zaluzie .subpage-section--blinds-repair .card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
  }
}


/* Pod 640 px už nech to ide na 1 kartu */
@media (max-width: 640px) {

  .subpage--zaluzie .subpage-section--blinds-repair .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .subpage--zaluzie .subpage-section--blinds-repair .why-card {
    max-width: none;
    margin: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------*/

/* =========================================================
   FIX: GALÉRIA - responzívne video karty
   768 px = 3 menšie karty vedľa seba
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .subpage--video .video-gallery {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .subpage--video .video-gallery .section__title {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .subpage--video .video-gallery .section__subtitle {
    max-width: 760px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.55;
  }

  .subpage--video .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 24px;
    align-items: start;
  }

  .subpage--video .video-card {
    width: 100%;
    max-width: none;
    border-radius: 14px;
    border-width: 2px;
  }

  .subpage--video .video-play {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .subpage--video .video-card__overlay {
    padding: 14px;
  }

  .subpage--video .video-card__content h3 {
    font-size: 15px;
    line-height: 1.25;
  }

  .subpage--video .video-card__content p {
    font-size: 12px;
    line-height: 1.35;
  }
}


/* =========================================================
   421–640 px = 2 karty vedľa seba
========================================================= */

@media (min-width: 421px) and (max-width: 640px) {

  .subpage--video .video-gallery {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .subpage--video .video-gallery .section__title {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .subpage--video .video-gallery .section__subtitle {
    margin: 0 auto 26px;
    font-size: 15px;
    line-height: 1.5;
  }

  .subpage--video .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 18px;
  }

  .subpage--video .video-card {
    border-radius: 13px;
    border-width: 2px;
  }

  .subpage--video .video-play {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .subpage--video .video-card__overlay {
    padding: 12px;
  }

  .subpage--video .video-card__content h3 {
    font-size: 13.5px;
    line-height: 1.25;
  }

  .subpage--video .video-card__content p {
    display: none;
  }
}


/* =========================================================
   320–420 px = stále 2 karty, ale úspornejšie
========================================================= */

@media (max-width: 420px) {

  .subpage--video .video-gallery {
    padding-top: 32px;
    padding-bottom: 38px;
  }

  .subpage--video .video-gallery .section__title {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .subpage--video .video-gallery .section__subtitle {
    margin: 0 auto 22px;
    font-size: 14px;
    line-height: 1.45;
  }

  .subpage--video .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 14px;
  }

  .subpage--video .video-card {
    border-radius: 12px;
    border-width: 2px;
  }

  .subpage--video .video-play {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .subpage--video .video-card__overlay {
    padding: 9px;
  }

  .subpage--video .video-card__content h3 {
    font-size: 12px;
    line-height: 1.2;
  }

  .subpage--video .video-card__content p {
    display: none;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------------------------------------*/

/* =========================================================
   FIX: SERVIS - Čo vám vyrieši servis okien
   Tablet 641–900 px = 2 karty vedľa seba
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .subpage--servis .subpage-section--benefits .new__card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .subpage--servis .subpage-section--benefits .text-card {
    padding: 22px;
    border-radius: 18px;
  }

  .subpage--servis .subpage-section--benefits .text-card__title {
    font-size: 19px;
    line-height: 1.3;
    gap: 12px;
    align-items: center;
  }

  .subpage--servis .subpage-section--benefits .text-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .subpage--servis .subpage-section--benefits .text-card__icon svg {
    width: 21px;
    height: 21px;
  }

  .subpage--servis .subpage-section--benefits .text-card p {
    font-size: 15px;
    line-height: 1.55;
  }
}


/* Pod 640 px už nech ide 1 karta na riadok */
@media (max-width: 640px) {

  .subpage--servis .subpage-section--benefits .new__card-grid-3 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .subpage--servis .subpage-section--benefits .text-card {
    padding: 18px;
  }

  .subpage--servis .subpage-section--benefits .text-card__title {
    font-size: 17px;
    line-height: 1.3;
  }

  .subpage--servis .subpage-section--benefits .text-card p {
    font-size: 14.5px;
    line-height: 1.5;
  }
}


/* -------------------------------------------------------------------------------------------------------------------------------------- */
/* =========================================================
   FIX: HOMEPAGE - Čomu sa venujeme
   Tablet 641–900 px = 2 karty vedľa seba
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .main-page .home-services .home-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .main-page .home-services .service-card {
    grid-template-columns: 72px 1fr;
    min-height: 145px;
    gap: 16px;
    padding: 16px;
    border-radius: 22px;
  }

  .main-page .home-services .service-card__media {
    width: 72px;
    height: 72px;
    min-height: 72px;
    border-radius: 18px;
  }

  .main-page .home-services .service-card__icon {
    width: 42px;
    height: 42px;
    font-size: 19px;
    border-radius: 12px;
  }

  .main-page .home-services .service-card__title {
    font-size: 18px;
    line-height: 1.25;
  }

  .main-page .home-services .service-card__text {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .main-page .home-services .service-card__link {
    font-size: 14.5px;
  }
}


/* Pod 640 px už nech ide 1 karta na riadok */
@media (max-width: 640px) {

  .main-page .home-services .home-services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .main-page .home-services .service-card {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 20px;
  }
}



/* -------------------------------------------------------------------------------------------------------------------------------------- */
/* =========================================================
   FIX: SIEŤKY - Kedy sa oplatí riešiť sieťky proti hmyzu
   Tablet 641–900 px = 2 karty vedľa seba
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .subpage--sietky .subpage-section--mesh-problems .new__card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }

  .subpage--sietky .subpage-section--mesh-problems .text-card {
    padding: 22px;
    border-radius: 18px;
  }

  .subpage--sietky .subpage-section--mesh-problems .text-card__title {
    font-size: 19px;
    line-height: 1.3;
    gap: 12px;
    align-items: center;
  }

  .subpage--sietky .subpage-section--mesh-problems .text-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
  }

  .subpage--sietky .subpage-section--mesh-problems .text-card__icon svg {
    width: 21px;
    height: 21px;
  }

  .subpage--sietky .subpage-section--mesh-problems .text-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  /* špeciálna obrázková karta medzi textovými kartami */
  .subpage--sietky .subpage-section--mesh-problems .picture-card--sietky-problem {
    padding: 14px;
    border-radius: 18px;
    min-height: 100%;
  }

  .subpage--sietky .subpage-section--mesh-problems .picture-card--sietky-problem .row__image {
    width: 100%;
    height: 100%;
    min-height: 180px;
    margin: 0;
    padding: 0;
  }

  .subpage--sietky .subpage-section--mesh-problems .picture-card--sietky-problem .row__image img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    max-height: 210px;
    object-fit: cover;
    border-radius: 14px;
  }

  .subpage--sietky .subpage-section--mesh-problems .picture-card--sietky-problem .image-overlay {
    left: 10px;
    bottom: 10px;
    padding: 7px 11px;
    font-size: 12.5px;
    border-radius: 6px;
  }
}


/* Pod 640 px už nech ide 1 karta na riadok */
@media (max-width: 640px) {

  .subpage--sietky .subpage-section--mesh-problems .new__card-grid-3 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .subpage--sietky .subpage-section--mesh-problems .text-card {
    padding: 18px;
  }

  .subpage--sietky .subpage-section--mesh-problems .text-card__title {
    font-size: 17px;
    line-height: 1.3;
  }

  .subpage--sietky .subpage-section--mesh-problems .text-card p {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .subpage--sietky .subpage-section--mesh-problems .picture-card--sietky-problem .row__image img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
  }
}
/* -------------------------------------------------------------------------------------------------------------------------------------- */
/* =========================================================
   FIX: BLOG PODSTRÁNKA
   Tablet 641–900 px = 2 články vedľa seba
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .subpage--blog .subpage-section--blog .new__card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .subpage--blog .subpage-section--blog .blog-card {
    width: 100%;
    max-width: none;
    border-radius: 18px;
  }

  .subpage--blog .subpage-section--blog .blog-card__image-wrap {
    height: 190px;
  }

  .subpage--blog .subpage-section--blog .blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .subpage--blog .subpage-section--blog .blog-card__content {
    padding: 18px;
  }

  .subpage--blog .subpage-section--blog .blog-card__title {
    font-size: 17px;
    line-height: 1.4;
  }

  .subpage--blog .subpage-section--blog .blog-card__footer {
    padding: 14px 18px;
  }

  .subpage--blog .subpage-section--blog .blog-card__link {
    font-size: 15px;
  }
}


/* Pod 640 px už nech ide 1 článok na riadok */
@media (max-width: 640px) {

  .subpage--blog .subpage-section--blog .new__card-grid-3 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .subpage--blog .subpage-section--blog .blog-card__image-wrap {
    height: 180px;
  }

  .subpage--blog .subpage-section--blog .blog-card__title {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------------- */
/* =========================================================
   FIX: CTA sekcie - tablet layout
   641–900 px = ikona vedľa textu
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .cta-section {
    padding: 42px 0;
  }

  .cta-card,
  .cta-how-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 24px;

    padding: 24px 28px;
    border-radius: 18px;
  }

  .cta-left,
  .cta-how-left {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    min-width: 0;
    flex: 1;
  }

  .cta-icon-wrapper,
  .cta-how-icon-wrapper {
    width: 54px;
    height: 54px;
    min-width: 54px;
    font-size: 22px;
    border-radius: 14px;
  }

  .cta-info,
  .cta-how-info {
    min-width: 0;
  }

  .cta-label,
  .cta-how-label {
    font-size: 12px;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .cta-title,
  .cta-how-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .cta-right,
  .cta-how-right {
    width: auto;
    justify-content: flex-end;
    border-top: none;
    padding-top: 0;
    flex-shrink: 0;
    gap: 12px;
  }

  .cta-link-text,
  .cta-how-link-text {
    font-size: 15px;
    white-space: nowrap;
  }

  .cta-arrow,
  .cta-how-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}


/* =========================================================
   Pod 640 px nech ostane mobilný layout pod sebou
========================================================= */

@media (max-width: 640px) {

  .cta-card,
  .cta-how-card {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 22px 18px;
  }

  .cta-left,
  .cta-how-left {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .cta-right,
  .cta-how-right {
    width: 100%;
    justify-content: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 14px;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------------- */
/* =========================================================
   FIX: SERVIS - Ako funguje servis okien
   Tablet 641–900 px = text + obrázok vedľa seba
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .subpage--servis .subpage-section--services .row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 42px;
    direction: ltr;
  }

  /* Reverzný riadok so sliderom:
     slider vľavo, text vpravo */
  .subpage--servis .subpage-section--services .row.row--reverse {
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
    direction: ltr;
  }

  .subpage--servis .subpage-section--services .row.row--reverse .custom-ba-container {
    order: 1;
  }

  .subpage--servis .subpage-section--services .row.row--reverse .row__text {
    order: 2;
  }

  .subpage--servis .subpage-section--services .row__text h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .subpage--servis .subpage-section--services .row__text p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .subpage--servis .subpage-section--services .row__text p:last-child {
    margin-bottom: 0;
  }

  .subpage--servis .subpage-section--services .row__image {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .subpage--servis .subpage-section--services .row__image img {
    width: 100%;
    height: 220px;
    max-height: 220px;
    object-fit: cover;
    border-radius: 14px;
  }

  /* Špeciálny porovnávací slider tesnenia */
  .subpage--servis .subpage-section--services .custom-ba-container {
    width: 100%;
    height: 220px;
    max-height: 220px;
    margin: 0;
    border-radius: 14px;
  }

  .subpage--servis .subpage-section--services .custom-ba-container::after {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .subpage--servis .subpage-section--services .custom-ba-container::before {
    width: 2px;
  }

  .subpage--servis .subpage-section--services .cba-label {
    bottom: 10px;
    left: 10px;
    padding: 7px 10px;
    font-size: 12px;
    border-radius: 6px;
  }

  .subpage--servis .subpage-section--services .cba-l-after {
    left: auto;
    right: 10px;
  }

  .subpage--servis .subpage-section--services .image-overlay {
    left: 10px;
    bottom: 10px;
    padding: 7px 11px;
    font-size: 12.5px;
    border-radius: 6px;
  }
}


/* =========================================================
   Presné doladenie pre 768 px
========================================================= */

@media (min-width: 721px) and (max-width: 820px) {

  .subpage--servis .subpage-section--services .row {
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
    gap: 22px;
  }

  .subpage--servis .subpage-section--services .row.row--reverse {
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  }

  .subpage--servis .subpage-section--services .row__image img,
  .subpage--servis .subpage-section--services .custom-ba-container {
    height: 220px;
    max-height: 220px;
  }
}


/* =========================================================
   Pod 640 px už nech ide klasicky pod seba
========================================================= */

@media (max-width: 640px) {

  .subpage--servis .subpage-section--services .row,
  .subpage--servis .subpage-section--services .row.row--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    direction: ltr;
  }

  .subpage--servis .subpage-section--services .row.row--reverse .row__text,
  .subpage--servis .subpage-section--services .row.row--reverse .custom-ba-container {
    order: initial;
  }

  .subpage--servis .subpage-section--services .row__image img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
  }

  .subpage--servis .subpage-section--services .custom-ba-container {
    height: 240px;
    max-height: 240px;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------------- */

/* =========================================================
   FIX: ŽALÚZIE - Žalúzie a rolety na mieru
   Tablet 641–900 px = text + obrázok vedľa seba
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .subpage--zaluzie .subpage-section--blinds .row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 0;
  }

  .subpage--zaluzie .subpage-section--blinds .row__text h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .subpage--zaluzie .subpage-section--blinds .row__text p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .subpage--zaluzie .subpage-section--blinds .row__text ul {
    margin-bottom: 0;
  }

  .subpage--zaluzie .subpage-section--blinds .row__text li {
    font-size: 15.5px;
    line-height: 1.5;
    margin-bottom: 9px;
    padding-left: 22px;
  }

  .subpage--zaluzie .subpage-section--blinds .row__text li::before {
    top: 8px;
    width: 7px;
    height: 7px;
  }

  .subpage--zaluzie .subpage-section--blinds .row__image {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .subpage--zaluzie .subpage-section--blinds .row__image img {
    width: 100%;
    height: 230px;
    max-height: 230px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
  }

  .subpage--zaluzie .subpage-section--blinds .image-overlay {
    left: 10px;
    bottom: 10px;
    padding: 7px 11px;
    font-size: 12.5px;
    border-radius: 6px;
  }
}


/* Presnejšie doladenie pre 768 px */
@media (min-width: 721px) and (max-width: 820px) {

  .subpage--zaluzie .subpage-section--blinds .row {
    grid-template-columns: minmax(0, 2fr) minmax(230px, 1fr);
    gap: 22px;
  }

  .subpage--zaluzie .subpage-section--blinds .row__image img {
    height: 235px;
    max-height: 235px;
  }
}


/* Pod 640 px už nech ide obrázok pod text */
@media (max-width: 640px) {

  .subpage--zaluzie .subpage-section--blinds .row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .subpage--zaluzie .subpage-section--blinds .row__image img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
  }
}
/* -------------------------------------------------------------------------------------------------------------------------------------- */

/* =========================================================
   FIX: SERVIS - porovnávací slider na mobile
   Tablet ostáva bez zmeny, rieši sa len mobil do 640 px
========================================================= */

@media (max-width: 640px) {

  .subpage--servis .subpage-section--services .custom-ba-container {
    height: 230px;
    max-height: 230px;
    border-radius: 14px;
  }

  .subpage--servis .subpage-section--services .custom-ba-container::after {
    width: 36px;
    height: 36px;
    font-size: 18px;
    z-index: 30;
  }

  .subpage--servis .subpage-section--services .custom-ba-container::before {
    width: 2px;
    z-index: 29;
  }

  .subpage--servis .subpage-section--services .cba-label {
    bottom: 10px;
    padding: 6px 9px;
    border-radius: 6px;

    font-size: 12px;
    line-height: 1.1;
    font-weight: 700;

    max-width: calc(50% - 30px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    z-index: 31;
    pointer-events: none;
  }

  .subpage--servis .subpage-section--services .cba-l-before {
    left: 10px;
    right: auto;
  }

  .subpage--servis .subpage-section--services .cba-l-after {
    left: auto;
    right: 10px;
    text-align: right;
  }
}


/* =========================================================
   425 px a menej - skrátené texty štítkov
========================================================= */

@media (max-width: 480px) {

  .subpage--servis .subpage-section--services .cba-label {
    font-size: 0;
    padding: 6px 10px;
  }

  .subpage--servis .subpage-section--services .cba-l-before::after {
    content: "Staré";
    font-size: 12px;
    line-height: 1.1;
  }

  .subpage--servis .subpage-section--services .cba-l-after::after {
    content: "Nové";
    font-size: 12px;
    line-height: 1.1;
  }
}


/* =========================================================
   360 px a menej - ešte kompaktnejšie
========================================================= */

@media (max-width: 360px) {

  .subpage--servis .subpage-section--services .custom-ba-container {
    height: 205px;
    max-height: 205px;
  }

  .subpage--servis .subpage-section--services .cba-label {
    bottom: 8px;
    padding: 5px 8px;
  }

  .subpage--servis .subpage-section--services .cba-l-before::after,
  .subpage--servis .subpage-section--services .cba-l-after::after {
    font-size: 11px;
  }
}

/* -------------------------------------------------------------------------------------------------------------------------------------- */

/* =========================================================
   FIX: SEO / Kde servisujeme
   Tablet 641–900 px = mapa vedľa textu
========================================================= */

@media (min-width: 641px) and (max-width: 900px) {

  .subpage--seo .slideshow-section--ba .split-content {
    display: grid;
    grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.6fr);
    gap: 24px;
    align-items: center;

    padding: 22px;
    border-radius: 18px;
  }

  .subpage--seo .slideshow-section--ba .map-col {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .subpage--seo .slideshow-section--ba .map-col img {
    width: 100%;
    height: 240px;
    max-height: 240px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    display: block;
  }

  .subpage--seo .slideshow-section--ba .text-col {
    padding: 0;
  }

  .subpage--seo .slideshow-section--ba .location-tag {
    font-size: 11px;
    padding: 7px 12px;
    margin-bottom: 12px;
  }

  .subpage--seo .slideshow-section--ba .text-col h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .subpage--seo .slideshow-section--ba .text-col p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .subpage--seo .slideshow-section--ba .seo-features {
    margin-bottom: 18px;
  }

  .subpage--seo .slideshow-section--ba .seo-features li {
    font-size: 14.5px;
    line-height: 1.45;
    margin-bottom: 9px;
  }

  .subpage--seo .slideshow-section--ba .btn-small {
    width: 100%;
    padding: 13px 18px;
    font-size: 15px;
    text-align: center;
  }
}


/* Presné doladenie pre 768 px */
@media (min-width: 721px) and (max-width: 820px) {

  .subpage--seo .slideshow-section--ba .split-content {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.6fr);
    gap: 22px;
  }

  .subpage--seo .slideshow-section--ba .map-col img {
    height: 245px;
    max-height: 245px;
  }
}


/* Pod 640 px nech ide mapa nad text ako mobil */
@media (max-width: 640px) {

  .subpage--seo .slideshow-section--ba .split-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .subpage--seo .slideshow-section--ba .map-col {
    max-width: 320px;
    margin-inline: auto;
  }

  .subpage--seo .slideshow-section--ba .map-col img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
  }

  .subpage--seo .slideshow-section--ba .btn-small {
    width: 100%;
  }
}





/* -------------------------------------------------------------------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------
   KONTAKT - tablet 641–900 px
   Kontaktné údaje: text vľavo, mapa vpravo
---------------------------------------------------------------------- */

@media (min-width: 641px) and (max-width: 900px) {

  /* hlavný kontakt/formulár ostáva pod sebou */
  .contact-form-section .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* karta Kontaktné údaje */
  .contact-form-section .contact-form-info {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
    column-gap: 28px;
    row-gap: 14px;
    align-items: center;

    padding: 28px;
    border-radius: 24px;
  }

  /* ľavý stĺpec - všetky textové veci */
  .contact-form-section .contact-form-info .contact-form-title,
  .contact-form-section .contact-form-info > p,
  .contact-form-section .contact-form-info .contact-form-moje_kontakty,
  .contact-form-section .contact-form-info .contact-form-tucny_text {
    grid-column: 1;
  }

  /* mapa vpravo */
  .contact-form-section .contact-form-info .row__image {
    grid-column: 2;
    grid-row: 1 / span 6;

    width: 100%;
    max-width: none;
    margin: 0;
    align-self: center;

    border-radius: 22px;
  }

  .contact-form-section .contact-form-info .row__image img {
    width: 100%;
    height: 260px;
    min-height: 260px;
    max-height: 260px;

    object-fit: cover;
    object-position: center;

    border-radius: 20px;
  }

  /* nadpis */
  .contact-form-section .contact-form-info .contact-form-title {
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }

  /* úvodný text */
  .contact-form-section .contact-form-info > p {
    max-width: 36ch;
    font-size: 15.5px;
    line-height: 1.55;
    margin-bottom: 4px;
  }

  /* telefón + email */
  .contact-form-section .contact-form-info .contact-form-moje_kontakty {
    font-size: 15px;
    line-height: 1.4;
  }

  .contact-form-section .contact-form-info .contact-form-moje_kontakty i {
    font-size: 16px;
    flex-shrink: 0;
  }

  .contact-form-section .contact-form-info .contact-form-phone-cta {
    width: fit-content;
    min-width: 245px;
    max-width: 100%;

    padding: 12px 18px;
    border-radius: 999px;
    font-size: 15px;
  }

  .contact-form-section .contact-form-info .contact-form-phone-cta a {
    font-size: 15px;
    white-space: nowrap;
  }

  /* Pôsobíme text - obyčajný pôvodný badge */
  .contact-form-section .contact-form-info .contact-form-tucny_text {
    width: fit-content;
    max-width: 100%;

    padding: 8px 14px;
    border-radius: 999px;

    font-size: 14.5px;
    line-height: 1.35;
    font-weight: 700;

    white-space: normal;
  }

  /* overlay na mape */
  .contact-form-section .contact-form-info .image-overlay {
    left: 12px;
    bottom: 12px;

    padding: 7px 12px;
    border-radius: 999px;

    font-size: 12.5px;
  }
}


/* ----------------------------------------------------------------------
   KONTAKT - presnejšie pre 768 px
---------------------------------------------------------------------- */

@media (min-width: 721px) and (max-width: 820px) {

  .contact-form-section .contact-form-info {
    grid-template-columns: minmax(0, 1.1fr) minmax(245px, 0.9fr);
    column-gap: 24px;
    padding: 24px 26px;
  }

  .contact-form-section .contact-form-info .row__image img {
    height: 250px;
    min-height: 250px;
    max-height: 250px;
  }

  .contact-form-section .contact-form-info .contact-form-tucny_text {
    font-size: 14px;
    line-height: 1.3;
  }
}


/* ----------------------------------------------------------------------
   KONTAKT - mobil do 640 px
   Všetko pod seba
---------------------------------------------------------------------- */

@media (max-width: 640px) {

  .contact-form-section .contact-form-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .contact-form-section .contact-form-info .contact-form-tucny_text {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.35;
  }

  .contact-form-section .contact-form-info .row__image {
    width: 100%;
    max-width: none;
    margin-top: 8px;
  }

  .contact-form-section .contact-form-info .row__image img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: cover;
  }
}


/* -------------------------------------------------------------------------------------------------------------------------------------- */

/* =========================================================
   FIX: HOMEPAGE - Čomu sa venujeme
   Mobil 361–640 px = ikona vedľa textu, kompaktnejšie karty
========================================================= */

@media (min-width: 361px) and (max-width: 640px) {

  .main-page .home-services {
    padding: 38px 16px 44px;
  }

  .main-page .home-services .section__title {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .main-page .home-services .home-services__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .main-page .home-services .service-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 16px;

    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .main-page .home-services .service-card__media {
    width: 72px;
    height: 72px;
    min-height: 72px;
    border-radius: 18px;
  }

  .main-page .home-services .service-card__icon {
    width: 42px;
    height: 42px;
    font-size: 19px;
    border-radius: 12px;
  }

  .main-page .home-services .service-card__content {
    gap: 8px;
  }

  .main-page .home-services .service-card__title {
    font-size: 20px;
    line-height: 1.25;
  }

  .main-page .home-services .service-card__text {
    font-size: 15px;
    line-height: 1.5;
  }

  .main-page .home-services .service-card__link {
    align-self: flex-start;
    margin-left: 0;
    font-size: 15px;
  }
}


/* =========================================================
   FIX: HOMEPAGE - úplne malé mobily do 360 px
   Tu už nech je karta pod sebou, ale bez veľkej prázdnoty
========================================================= */

@media (max-width: 360px) {

  .main-page .home-services {
    padding: 34px 14px 40px;
  }

  .main-page .home-services .section__title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .main-page .home-services .service-card {
    grid-template-columns: 1fr;
    gap: 14px;

    padding: 16px;
    border-radius: 20px;
  }

  .main-page .home-services .service-card__media {
    width: 64px;
    height: 64px;
    min-height: 64px;
    border-radius: 16px;
  }

  .main-page .home-services .service-card__icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .main-page .home-services .service-card__title {
    font-size: 18px;
    line-height: 1.25;
  }

  .main-page .home-services .service-card__text {
    font-size: 14.5px;
    line-height: 1.45;
  }

  .main-page .home-services .service-card__link {
    align-self: flex-start;
    margin-left: 0;
    font-size: 14.5px;
  }
}




/* -------------------------------------------------------------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------------------------------------------------------------- */
































































































/* =========================================================
   FIX: Stabilizácia obrázkov pred kontaktom
   Dôležité pre správny anchor scroll na #index-kontakt
========================================================= */

.process .card__image-small {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  margin: auto auto 0;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  border-radius: 64px;
}

.process .card__image-small img {
  width: 100%;
  height: 100%;
  max-width: none;

  display: block;
  object-fit: cover;
  border-radius: 64px;

  transform: scale(1.25);
}

@media (max-width: 560px) {
  .process .card__image-small {
    max-width: 190px;
  }
}

@media (max-width: 360px) {
  .process .card__image-small {
    max-width: 170px;
  }
}












/* -------------------------------------------------------------------------------------------------------------------------------------- */
/* nove gdpr */

/* ------------------------------------------ subpage-section--clanok */
.subpage-section--dokumenty {
  width: 100%;
  padding: 60px 0; /* Horny a dolny odstup celej sekcie */
  
  /* Nastavenie opakujúceho sa pozadia */
  background-image: url('img/background/bg-wall.webp'); 
  background-repeat: repeat; /* Toto zabezpeci opakovanie pod sebou aj vedla seba */
  background-position: top center;
  background-attachment: scroll; /* Pozadie sa hybe spolu s textom */
  
  /* Ak chces, aby to nebolo prilis tmave, mozes pod to hodit farbu */
  background-color: #fcfdfe; 
}











/* =========================================================
   VOP / Obchodné podmienky - prepínaný obsah
   Sekcia: subpage-section--vop
========================================================= */

.subpage-section--vop {
  background-image: url('img/background/bg-wall.webp'); 
  background-position: top center;
  background-repeat: repeat;
  background-size: 120% auto;
}

/* krátky úvod pod nadpisom */
.vop-intro {
  max-width: 780px;
  margin: -34px auto 36px;
  text-align: center;

  font-size: 18px;
  line-height: 1.7;
  color: #5a6778;
}

/* hlavná biela karta */
.vop-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;

  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(31, 45, 61, 0.08);
  box-shadow: 0 14px 38px rgba(31, 45, 61, 0.08);
}

/* =========================================================
   Horné prepínače
   Desktop: 5 + 5 rovnakých tlačidiel
========================================================= */

.vop-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;

  margin-bottom: 42px;
}

/* jedno tlačidlo */
.vop-tab {
  width: 100%;
  min-height: 82px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 12px 10px;

  border: 2px solid #5a6778;
  border-radius: 16px;

  background: #ffffff;
  color: #445b6b;

  font-family: inherit;
  text-align: center;
  line-height: 1.2;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* číslo / znak + */
.vop-tab strong {
  display: block;
  margin-bottom: 6px;

  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

/* popis tlačidla */
.vop-tab span {
  display: block;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

/* hover */
.vop-tab:hover {
  border-color: #2F6DE1;
  color: #2F6DE1;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(47, 109, 225, 0.12);
}

/* aktívne tlačidlo */
.vop-tab.is-active {
  border-color: #0083C1;
  background: #0083C1;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 131, 193, 0.22);
}

/* odstráni default focus bordel, ale nechá prístupný focus */
.vop-tab:focus {
  outline: none;
}

.vop-tab:focus-visible {
  outline: 3px solid rgba(47, 109, 225, 0.35);
  outline-offset: 3px;
}

/* =========================================================
   Obsah článkov
========================================================= */

.vop-panels {
  max-width: 980px;
  margin: 0 auto;
}

/* defaultne skryté */
.vop-panel {
  display: none;
  animation: vopFade 0.25s ease;
}

/* aktívny panel */
.vop-panel.is-active {
  display: block;
}

.vop-panel h3 {
  margin: 0 0 24px;

  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  color: #2f4454;
}

.vop-panel p {
  margin: 0 0 16px;

  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.vop-panel p:last-child {
  margin-bottom: 0;
}

/* jemná animácia pri prepnutí */
@keyframes vopFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   Tablet / menšie notebooky
========================================================= */

@media (max-width: 1100px) {
  .vop-card {
    max-width: 100%;
    padding: 30px;
  }

  .vop-tabs {
    gap: 12px;
  }

  .vop-tab {
    min-height: 78px;
  }

  .vop-tab strong {
    font-size: 23px;
  }

  .vop-tab span {
    font-size: 13.5px;
  }
}

/* =========================================================
   Tablety
   3 stĺpce, aby sa tlačidlá netlačili
========================================================= */

@media (max-width: 900px) {
  .vop-intro {
    margin: -24px auto 32px;
    font-size: 16.5px;
    line-height: 1.65;
  }

  .vop-card {
    padding: 26px;
    border-radius: 24px;
  }

  .vop-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 36px;
  }

  .vop-tab {
    min-height: 76px;
    border-radius: 15px;
  }

  .vop-panel h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .vop-panel p {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* =========================================================
   Mobily
   2 stĺpce
========================================================= */

@media (max-width: 640px) {
  .subpage-section--vop {
    background-size: auto;
  }

  .vop-intro {
    margin: -16px auto 28px;
    font-size: 15.5px;
    line-height: 1.6;
  }

  .vop-card {
    padding: 20px;
    border-radius: 20px;
  }

  .vop-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 30px;
  }

  .vop-tab {
    min-height: 70px;
    padding: 10px 8px;
    border-radius: 14px;
  }

  .vop-tab strong {
    margin-bottom: 4px;
    font-size: 21px;
  }

  .vop-tab span {
    font-size: 12.5px;
    line-height: 1.2;
  }

  .vop-panel h3 {
    font-size: 21px;
    margin-bottom: 18px;
  }

  .vop-panel p {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* =========================================================
   Extra malé mobily
========================================================= */

@media (max-width: 420px) {
  .vop-card {
    padding: 16px;
    border-radius: 18px;
  }

  .vop-tabs {
    gap: 8px;
  }

  .vop-tab {
    min-height: 66px;
    padding: 9px 7px;
  }

  .vop-tab strong {
    font-size: 20px;
  }

  .vop-tab span {
    font-size: 12px;
  }

  .vop-panel h3 {
    font-size: 19px;
  }

  .vop-panel p {
    font-size: 14.5px;
    line-height: 1.6;
  }
}

@media (max-width: 360px) {
  .vop-card {
    padding: 14px;
  }

  .vop-tab {
    min-height: 64px;
  }

  .vop-tab strong {
    font-size: 19px;
  }

  .vop-tab span {
    font-size: 11.5px;
  }

  .vop-panel h3 {
    font-size: 18px;
  }

  .vop-panel p {
    font-size: 14px;
  }
}













































/* =========================================================
   GDPR - výber prevádzkovateľa podľa firmy
   Sekcia: subpage-section--gdpr-company
========================================================= */

.subpage-section--gdpr-company {
  background-image: url('img/background/bg-wall.webp'); 
}

.gdpr-company-intro {
  max-width: 780px;
  margin: -34px auto 42px;
  text-align: center;

  font-size: 18px;
  line-height: 1.7;
  color: #5a6778;
}

.gdpr-company-grid {
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gdpr-company-card {
  min-height: 280px;
  padding: 30px 26px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  background: #ffffff;
  border: 1px solid rgba(31, 45, 61, 0.08);
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(31, 45, 61, 0.08);

  text-decoration: none;
  color: inherit;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.gdpr-company-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  background: rgba(0, 131, 193, 0.10);
  color: #0083C1;

  font-size: 25px;
}

.gdpr-company-card__content {
  flex: 1;
}

.gdpr-company-card__content h3 {
  margin: 0 0 14px;

  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  color: #2f4454;
}

.gdpr-company-card__content p {
  margin: 0;

  font-size: 16px;
  line-height: 1.65;
  color: #5a6778;
}

.gdpr-company-card__status {
  margin-top: 24px;
  padding: 10px 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  background: #eef4ff;
  color: #2F6DE1;
}

/* aktívna karta - klikateľná */
.gdpr-company-card--active:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 131, 193, 0.45);
  box-shadow: 0 18px 42px rgba(31, 45, 61, 0.13);
}

.gdpr-company-card--active:hover .gdpr-company-card__status {
  background: #0083C1;
  color: #ffffff;
}

/* neaktívne karty */
.gdpr-company-card--disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.gdpr-company-card--disabled .gdpr-company-card__icon {
  background: rgba(90, 103, 120, 0.10);
  color: #5a6778;
}

.gdpr-company-card--disabled .gdpr-company-card__status {
  background: #f1f3f5;
  color: #7a8794;
}

/* tablet */
@media (max-width: 900px) {
  .gdpr-company-intro {
    margin: -24px auto 34px;
    font-size: 16.5px;
    line-height: 1.65;
  }

  .gdpr-company-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 18px;
  }

  .gdpr-company-card {
    min-height: auto;
    padding: 26px;
  }
}

/* mobil */
@media (max-width: 640px) {
  .gdpr-company-intro {
    margin: -16px auto 28px;
    font-size: 15.5px;
    line-height: 1.6;
  }

  .gdpr-company-card {
    padding: 22px;
    border-radius: 22px;
  }

  .gdpr-company-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;

    border-radius: 16px;
    font-size: 22px;
  }

  .gdpr-company-card__content h3 {
    font-size: 20px;
  }

  .gdpr-company-card__content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .gdpr-company-card__status {
    margin-top: 20px;
    font-size: 13.5px;
  }
}
















/* =========================================================
   Ochrana právnych dokumentov pred bežným kopírovaním
========================================================= */

.legal-protected,
.legal-protected * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* odkazy a tlačidlá musia zostať klikateľné */
.legal-protected a,
.legal-protected button {
  pointer-events: auto;
}

/* tlač právneho dokumentu zablokujeme vizuálne */
@media print {
  .legal-protected {
    display: none !important;
  }

  body::before {
    content: "Tento dokument je dostupný výhradne ako webová stránka. Tlač a kopírovanie obsahu nie sú povolené.";
    display: block;
    padding: 40px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5;
  }
}









/* =========================================================
   Legal modal / malé právne prílohy
========================================================= */

.legal-inline-button {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0083C1;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.legal-inline-button:hover {
  color: #f4511e;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 24px;
}

.legal-modal.is-open {
  display: flex;
}

.legal-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
}

.legal-modal__box {
  position: relative;
  z-index: 1;

  width: min(620px, 100%);
  padding: 34px 32px;

  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);

  user-select: none;
}

.legal-modal__box h3 {
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  color: #2f4454;
}

.legal-modal__box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.legal-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;

  width: 34px;
  height: 34px;

  border: 0;
  border-radius: 50%;

  background: #f4511e;
  color: #ffffff;

  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.legal-modal__close:hover {
  background: #0083C1;
  color: #ffffff;
}

@media (max-width: 640px) {
  .legal-modal {
    padding: 16px;
  }

  .legal-modal__box {
    padding: 30px 22px 24px;
    border-radius: 20px;
  }

  .legal-modal__box h3 {
    font-size: 20px;
  }

  .legal-modal__box p {
    font-size: 15px;
    line-height: 1.65;
  }
}












/* =========================================================
   aby sa pri otvorenom okne nescrollovalo pozadie
   aby modal nikdy nevytiekol mimo vysku displeja
========================================================= */

body.modal-open {
  overflow: hidden;
}

.legal-modal__box {
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

@media (max-width: 640px) {
  .legal-modal {
    align-items: flex-start;
    padding: 18px 14px;
  }

  .legal-modal__box {
    width: 100%;
    max-height: calc(100vh - 36px);
    margin-top: 20px;
    overflow-y: auto;
  }
}




















/* =========================================================
   Legal matrix / Matica právnych základov a práv
========================================================= */

.legal-inline-link {
  color: #0083C1;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-inline-link:hover {
  color: #f4511e;
}

.subpage-section--legal-matrix {
  background-image: url('img/background/bg-wall.webp');
  background-position: top center;
  background-repeat: repeat;
  background-size: 120% auto;
}

/* širšia sekcia iba pre maticu */
.subpage-section--legal-matrix .container {
  width: calc(100% - 40px);
  max-width: 1680px;
}

.legal-matrix-intro {
  max-width: 780px;
  margin: -34px auto 36px;
  text-align: center;

  font-size: 18px;
  line-height: 1.7;
  color: #5a6778;
}

.legal-matrix-card {
  max-width: 100%;
  margin: 0 auto;
  padding: 28px;

  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(31, 45, 61, 0.08);
  box-shadow: 0 14px 38px rgba(31, 45, 61, 0.08);
}

/* horný posuvník */
.legal-matrix-scrollbar {
  width: 100%;
  height: 18px;
  margin-bottom: 10px;

  overflow-x: auto;
  overflow-y: hidden;
}

.legal-matrix-scrollbar__inner {
  width: 1600px;
  min-width: 1600px;
  height: 1px;
}

/* spodný posuvník s tabuľkou */
.legal-matrix-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 18px;
  border: 1px solid rgba(31, 45, 61, 0.12);
}

.legal-matrix-table {
  width: 1600px;
  min-width: 1600px;
  border-collapse: collapse;

  font-size: 13px;
  line-height: 1.45;
  color: #2f4454;
}

.legal-matrix-table th,
.legal-matrix-table td {
  padding: 12px 10px;
  border: 1px solid rgba(31, 45, 61, 0.22);
  vertical-align: top;
  text-align: left;
}

.legal-matrix-table thead th {
  background: #eef4ff;
  color: #24384a;
  font-weight: 800;
  text-align: center;
}

.legal-matrix-table tbody th {
  width: 190px;
  background: #f7f9fc;
  font-weight: 800;
  color: #24384a;
}

.legal-matrix-table tbody td {
  background: #ffffff;
}

@media (max-width: 900px) {
  .subpage-section--legal-matrix .container {
    width: calc(100% - 28px);
  }

  .legal-matrix-intro {
    margin: -24px auto 32px;
    font-size: 16.5px;
    line-height: 1.65;
  }

  .legal-matrix-card {
    padding: 22px;
    border-radius: 24px;
  }

  .legal-matrix-scrollbar__inner {
    width: 1300px;
    min-width: 1300px;
  }

  .legal-matrix-table {
    width: 1300px;
    min-width: 1300px;
    font-size: 12.5px;
  }
}

@media (max-width: 640px) {
  .subpage-section--legal-matrix {
    background-size: auto;
  }

  .subpage-section--legal-matrix .container {
    width: calc(100% - 20px);
  }

  .legal-matrix-intro {
    margin: -16px auto 28px;
    font-size: 15.5px;
    line-height: 1.6;
  }

  .legal-matrix-card {
    padding: 16px;
    border-radius: 20px;
  }

  .legal-matrix-scroll {
    border-radius: 14px;
  }

  .legal-matrix-scrollbar__inner {
    width: 1180px;
    min-width: 1180px;
  }

  .legal-matrix-table {
    width: 1180px;
    min-width: 1180px;
    font-size: 12px;
  }

  .legal-matrix-table th,
  .legal-matrix-table td {
    padding: 10px 8px;
  }
}

















/****************************************** odkazy *******************/

.legal-downloads {
  display: grid;
  gap: 12px;
  margin-bottom: 42px;
}

.legal-download-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 15px 18px;

  border: 1px solid rgba(0, 131, 193, 0.28);
  border-radius: 14px;

  background: #f7fbff;
  color: #0083C1;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.legal-download-link::after {
  content: "Stiahnuť .DOCX";
  flex: 0 0 auto;

  padding: 7px 12px;
  border-radius: 999px;

  background: #0083C1;
  color: #ffffff;

  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.legal-download-link:hover {
  background: #0083C1;
  color: #ffffff;
}

.legal-download-link:hover::after {
  background: #ffffff;
  color: #0083C1;
}

@media (max-width: 640px) {
  .legal-downloads {
    margin-bottom: 34px;
  }

  .legal-download-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;

    padding: 14px 15px;
    font-size: 14.5px;
  }

  .legal-download-link::after {
    font-size: 11.5px;
  }
}


































.subpage-section-checkbox {
  background-image: url('img/background/bg-wall.webp'); 
}
.subpage-section--cookies {
  background-image: url('img/background/bg-wall.webp'); 
}













.vop-panel ul {
  margin: 0 0 28px 24px;
  padding: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.vop-panel li {
  margin-bottom: 8px;
}

.vop-panel li:last-child {
  margin-bottom: 0;
}







/* GDPR - styl nadpisov prav */
.legal-right-title {
  margin: 38px 0 14px;

  text-align: center;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
  color: #111;
}

.legal-right-title + p {
  margin-top: 0;
}

.legal-right-title ~ p {
  text-align: justify;
}









.legal-alpha-list {
  margin: 0 0 18px 24px;
  padding: 0;
  list-style: lower-alpha;
}

.legal-alpha-list li::marker {
  content: counter(list-item, lower-alpha) ") ";
}

.legal-alpha-list li {
  margin-bottom: 8px;
  padding: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

.legal-alpha-list li:last-child {
  margin-bottom: 0;
}







.legal-company-info {
  margin-bottom: 28px;
}

.legal-company-info p {
  margin: 0;
}

.legal-company-info p:last-child {
  margin-bottom: 0;
}











/* GDPR - päta dokumentu */
.legal-document-footer {
  margin-top: 38px;
  text-align: center;
}

.legal-document-validity {
  margin: 0 0 54px;
  font-weight: 800;
}

.legal-document-version {
  margin: 0;
}

.legal-document-version span {
  margin: 0 18px;
}






















.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-socials p {
  margin: 0;
}

.footer-bottom .footer-socials::before,
.footer-bottom .footer-socials::after,
.footer-bottom .footer-socials p::before,
.footer-bottom .footer-socials p::after {
  content: none;
  display: none;
}
















.footer .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;
  border: 2px solid transparent;
  border-radius: 14px;

  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.footer .logo img {
  display: block;
  transition: transform 0.3s ease;
}

.footer .logo:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.footer .logo:hover img {
  transform: scale(1.04);
}













/* Ako prebieha servis - obrazky bez orezu */
/* Ako prebieha servis - obrázok bez zásahu do rozloženia kariet */
/* Ako prebieha servis - obrázky bez orezu */
.process .card__image-small img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.25);
}





















































/* ================= ================= ================= ================= ================= Hero subpage pozadia -- */
/* TABLET + DESKTOP */
@media (min-width: 561px) {
  .main-page .hero { background-image: url("img/hero-main.webp"); }
  .subpage--servis .hero { background-image: url("img/hero-servis.webp"); }
  .subpage--sietky .hero { background-image: url("img/hero-sietky.webp"); }
  .subpage--zaluzie .hero { background-image: url("img/hero-zaluzie.webp"); }
  .subpage--seo .hero { background-image: url("img/hero-seo.webp"); }
  .subpage--otazky .hero { background-image: url("img/hero-otazky.webp"); }
  .subpage--video .hero { background-image: url("img/hero-galeria.webp"); }
  .subpage---hero--blog { background-image: url('img/blog-hero-3.webp'); }


  .test-page .hero { background-image: url("img/hero-main.webp"); }
}








@media (max-width: 560px) {

  .subpage---hero--blog { background-image: url('img/blog-hero-thumb.webp'); }
  
  .hero-mobile { background-image: url('img/background-thumb/g-bg-thumb.webp'); }

  .intro-section { background-image: url('img/background-thumb/f-bg-thumb.webp'); }
  
  /* background: #ffffff url("img/background/bg-wall.webp") center / cover repeat; */

  .home-services { /* Comu sa venujeme */
    background-image: url('img/background-thumb/g-bg-thumb.webp');
  }
  .slideshow-section { /* slideshow A */
    background-image: url('img/background-thumb/a-bg-thumb.webp');
  }
  .slideshow-section--reverse { /* slideshow B */
    background-image: url('img/background-thumb/b-bg-thumb.webp');
  }
  .section--home-blog { /* Blog uvod na main */
    background-image: url('img/background-thumb/f-bg-thumb.webp');
  }
  .faq-section { /* caste otazky */
    background-image: url('img/background-thumb/g-bg-thumb.webp');
  }
  .process { /* Ako prebieha servis */
    background-image: url('img/background-thumb/a-bg-thumb.webp');
  }
  .contact-form-section { /* Kontaktny formular */
    background-image: url('img/background-thumb/f-bg-thumb.webp');
  }
}





    




.fa-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  fill: currentColor;
  vertical-align: middle;
}

/* SVG ikona Facebook, fab fa-facebook-f */
.fa-icon--facebook-f {
  width: 0.6em;
}












/* ================= HERO FINAL SWITCH ================= */

@media (max-width: 560px) {
  .page-content > .hero {
    display: none !important;
  }

  .page-content > .hero-mobile {
    display: block !important;
  }
}

@media (min-width: 561px) {
  .page-content > .hero {
    display: flex !important;
  }

  .page-content > .hero-mobile {
    display: none !important;
  }
}












@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-ext-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-ext-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-ext-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  color: #222;
}

/*
body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  color: #222;
}
*/

body {                         /* cele telo stranky */
  /*font-family: 'Poppins', sans-serif; /* nastavi pismo pre cely web */
  line-height: 1.6;            /* nastavi vysku riadku textu (lepsi rozostup) */
  background: #f5f5f5;       /* nastavi farbu pozadia stranky */
  color: #222;               /* nastavi farbu textu */
      
  font-family:'Poppins', sans-serif;


}


















@media (max-width: 640px) {
  .subpage-section--why-us .why-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .subpage-section--why-us .why-card {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    padding-bottom: 60px !important;
    overflow: hidden !important;
    text-align: center;
    box-sizing: border-box;
  }

  .subpage-section--why-us .card__top-icon,
  .subpage-section--why-us .why-card h3,
  .subpage-section--why-us .why-card p,
  .subpage-section--why-us .card__image,
  .subpage-section--why-us .card__image picture,
  .subpage-section--why-us .card__image img {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    float: none !important;
    z-index: auto !important;
  }

  .subpage-section--why-us .why-card p {
    display: block;
    margin: 0 0 22px;
    max-width: 100%;
  }

  .subpage-section--why-us .card__image {
    display: block !important;
    width: 100%;
    margin: 20px 0 0 !important;
    padding: 0 !important;
    clear: both;
    text-align: center;
  }

  .subpage-section--why-us .card__image picture {
    display: block;
  }

  .subpage-section--why-us .card__image img {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto !important;
  }
}







@media (max-width: 560px) {
  .hero-mobile {
    display: block;
    background: #ffffff url("img/background/bg-wall.webp") center / cover repeat;
    padding: 28px 20px 34px;
  }

  .hero-mobile__media {
    width: 100%;
    margin: 0 auto 26px;
  }

  .hero-mobile__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
  }

  .hero-mobile__content {
    padding: 22px 0 0;
    text-align: center;
  }
}





       
/* Vypnutie zaseknutého hover efektu na dotykových zariadeniach */
/* MOBIL: zrušenie zaseknutého hover efektu */
@media (max-width: 768px) {

  .slideshow-end-button:hover {
    background-color: white;
    color: #2196F3;
    transform: none;
    box-shadow: none;
  }

  .slideshow-end-button:hover .arrow {
    transform: none;
  }

  .slideshow-end-button--problems:hover {
    background-color: white;
    color: #ED8446;
  }

  .button-hero-obhliadka:hover {
    background: #2F6DE1;
    border-color: #2F6DE1;
    color: #fff;
    transform: none;
    box-shadow: 0 8px 20px rgba(47,109,225,.25);
  }

  .button-hero-info:hover {
    background: transparent;
    border-color: #2F6DE1;
    color: #2F6DE1;
  }

  .button-hero-info:hover .arrow {
    transform: none;
  }

  .cta-card:hover,
  .cta-how-card:hover,
  .service-card:hover,
  .picture-card:hover,
  .text-card:hover,
  .why-card:hover {
    transform: none;
  }
}



















/* FIX: odstup kontaktného formulára od pätičky na tablete a úzkych notebookoch */
@media (max-width: 1024px) {
  .contact-form-section {
    padding-bottom: 56px;
  }
}



















/* FIX: medzera medzi ikonou a textom vo formulári na malých mobiloch */
@media (max-width: 420px) {
  .contact-form .input-group .fa-icon {
    left: 16px;
    width: 18px;
    height: 18px;
  }

  .contact-form .input-group input:not([type="checkbox"]),
  .contact-form .input-group textarea {
    padding-left: 48px !important;
  }
  /* Ak to chceš ešte vzdušnejšie, zmeň iba toto:
  padding-left: 52px !important; */

  .contact-form .input-group input::placeholder,
  .contact-form .input-group textarea::placeholder {
    padding-left: 0;
  }
}








/* FIX: menšia medzera pod mapou po zalomení SEO bloku pod seba */
@media (max-width: 768px) {
  .split-content {
    gap: 16px;
  }

  .map-col {
    aspect-ratio: auto;
    max-width: 420px;
  }

  .map-col img {
    height: auto;
    object-fit: contain;
  }
}












/* FIX: hamburger menu, modrá farba kontaktov v mobilnom menu */
.nav-mobile-contact a,
.nav-mobile-contact a .fa-icon {
  color: #2F6DE1;
}




































/* Cookie lišta */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 22px;

  background: #ffffff;
  border: 1px solid rgba(31, 45, 61, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(31, 45, 61, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  max-width: 780px;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 6px;

  font-size: 18px;
  font-weight: 800;
  color: #24384a;
}

.cookie-banner__text p {
  margin: 0;

  font-size: 15px;
  line-height: 1.6;
  color: #5a6778;
}

.cookie-banner__text a {
  color: #0083C1;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.cookie-btn {
  padding: 12px 18px;

  border-radius: 999px;
  border: 0;

  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-btn--primary {
  background: #0083C1;
  color: #ffffff;
}

.cookie-btn--secondary {
  background: #eef4ff;
  color: #24384a;
}

.cookie-banner__text a {
  color: #0083C1;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cookie-banner__text a:hover {
  color: #ED8446;
}

/* COOKIE LIŠTA: na tablete text nad tlačidlami */
@media (max-width: 900px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;

    flex-direction: column;
    align-items: stretch;
    gap: 16px;

    padding: 18px;
    border-radius: 18px;
  }

  .cookie-banner__text {
    max-width: none;
    width: 100%;
  }

  .cookie-banner__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .cookie-btn {
    width: auto;
  }
}

/* COOKIE LIŠTA: na malom mobile tlačidlá pod sebou */
@media (max-width: 560px) {
  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-btn {
    width: 100%;
  }
}


.cookie-btn {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

.cookie-btn--primary:hover {
  background-color: #ED8446;
  box-shadow: 0 8px 18px rgba(0, 131, 193, 0.28);
}

.cookie-btn--secondary:hover {
  background-color: #fff4ed;
  color: #ED8446;
}

.cookie-btn:focus-visible {
  outline: 3px solid rgba(0, 131, 193, 0.35);
  outline-offset: 3px;
}




/* COOKIE SETTINGS: modal s nastaveniami analytických a marketingových cookies */
.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;
  background: rgba(0, 0, 0, 0.55);
}

.cookie-settings-modal[hidden] {
  display: none;
}

.cookie-settings-modal__dialog {
  position: relative;

  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;

  padding: 32px;
  background: #ffffff;
  color: #222222;

  border-radius: 16px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.cookie-settings-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;

  width: 40px;
  height: 40px;

  padding: 0;
  border: 0;
  background: transparent;
  color: #222222;

  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.cookie-settings-modal__close:hover {
  color: #f4511e;
}

.cookie-settings-modal__dialog h2 {
  margin: 0 48px 12px 0;
  font-size: 28px;
  line-height: 1.25;
}

.cookie-settings-modal__intro {
  margin: 0 0 24px;
  color: #555555;
  line-height: 1.65;
}

.cookie-settings-list {
  border-top: 1px solid #dddddd;
}

.cookie-settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 28px;
  padding: 20px 0;

  border-bottom: 1px solid #dddddd;
}

.cookie-settings-row__text {
  flex: 1;
}

.cookie-settings-row__text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.cookie-settings-row__text p {
  margin: 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-settings-always {
  flex-shrink: 0;

  padding: 7px 12px;
  border-radius: 999px;

  background: #eef4ff;
  color: #2F6DE1;

  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.cookie-switch {
  position: relative;
  flex-shrink: 0;

  display: inline-block;
  width: 54px;
  height: 30px;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch__slider {
  position: absolute;
  inset: 0;

  border-radius: 999px;
  background: #b9b9b9;

  cursor: pointer;
  transition: background 0.25s ease;
}

.cookie-switch__slider::before {
  content: "";

  position: absolute;
  top: 4px;
  left: 4px;

  width: 22px;
  height: 22px;

  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);

  transition: transform 0.25s ease;
}

.cookie-switch input:checked + .cookie-switch__slider {
  background: #2F6DE1;
}

.cookie-switch input:checked + .cookie-switch__slider::before {
  transform: translateX(24px);
}

.cookie-switch input:focus-visible + .cookie-switch__slider {
  outline: 3px solid rgba(47, 109, 225, 0.3);
  outline-offset: 3px;
}

.cookie-settings-modal__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;

  gap: 12px;
  margin-top: 26px;
}

@media (max-width: 640px) {
  .cookie-settings-modal {
    align-items: flex-end;
    padding: 0;
  }

  .cookie-settings-modal__dialog {
    max-height: 92vh;
    padding: 26px 18px 22px;

    border-radius: 18px 18px 0 0;
  }

  .cookie-settings-modal__dialog h2 {
    font-size: 23px;
  }

  .cookie-settings-row {
    gap: 18px;
  }

  .cookie-settings-modal__actions {
    flex-direction: column;
  }

  .cookie-settings-modal__actions .cookie-btn {
    width: 100%;
  }
}

/* COOKIES: hierarchia nadpisov a menšie medzery medzi odsekmi */
.subpage--cookies .row__text h3 {
  margin: 42px 0 18px;
}

.subpage--cookies .row__text h4 {
  margin: 24px 0 10px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
  color: #24384a;
}

.subpage--cookies .row__text p {
  margin: 0 0 16px;
}

.subpage--cookies .row__text h3:first-child {
  margin-top: 0;
}










































/* COOKIES: tlačidlá Nastavenia cookies a Stiahnuť PDF pod hlavným nadpisom */
.cookies-page-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 32px;
}

.cookies-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 190px;
  padding: 12px 20px;

  border: 0;
  border-radius: 999px;
  background: #0083C1;
  color: #ffffff;

  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;

  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cookies-page-button:hover {
  background: #ED8446;
  color: #ffffff;
  transform: translateY(-2px);
}

.cookies-page-button:focus-visible {
  outline: 3px solid rgba(0, 131, 193, 0.35);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .cookies-page-actions {
    flex-direction: column;
  }

  .cookies-page-button {
    width: 100%;
  }
}




















/* ŽALÚZIE A ROLETY: pevný vzhľad obrázkov iba v sekcii Oprava žalúzií */
.subpage-section--blinds-repair .gallery-grid {
  align-items: stretch;
}

.subpage-section--blinds-repair .why-card {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden !important;
  box-sizing: border-box;
}

.subpage-section--blinds-repair .why-card p {
  margin-bottom: 24px;
}

.subpage-section--blinds-repair .card__image-small {
  position: static !important;
  inset: auto !important;
  transform: none !important;

  display: block;
  width: 100%;
  height: 180px;
  margin: auto 0 0 !important;

  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.subpage-section--blinds-repair .card__image-small picture {
  display: block;
  width: 100%;
  height: 100%;
}

.subpage-section--blinds-repair .card__image-small img {
  position: static !important;
  inset: auto !important;
  transform: none !important;

  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .subpage-section--blinds-repair .card__image-small {
    height: 170px;
  }
}

@media (max-width: 560px) {
  .subpage-section--blinds-repair .card__image-small {
    height: 160px;
  }
}
















.text-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

