.tb216-hero-banner {
  position: relative;
  height: 360px; /* wysokość sekcji */
  display: flex;
  align-items: flex-start;
  padding: 80px 60px; /* odstępy od góry i boków */
  color: white;
  overflow: hidden; /* żeby ukryć wszystko poza sekcją */
}

.tb216-hero-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* zdjęcie dopasowane, zachowuje proporcje */
  z-index: 0; /* zdjęcie pod treścią */
}

.tb216-banner-content {
  position: relative;
  z-index: 1; /* treść nad obrazem */
  max-width: 500px;
  padding-left: 20px; /* odstęp od lewej */
}


.tb216-banner-title {
  font-size: 50px; /* Większy tytuł */
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  left: 10px; /* Przesunięcie tytułu w prawo */
}

.tb216-banner-button {
  display: inline-block;
  padding: 14px 28px;
  background-color: #cc0000;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  left: 20px; /* Przesunięcie przycisku w prawo */
  border: 2px solid #cc0000;
}

.tb216-banner-button:hover {
  background-color: transparent;
  color: #cc0000;
}

.tb216-banner-button:hover span {
  color: white; /* Litery w środku pozostają białe po najechaniu */
}
.tb216-hero {
  background-color: #f2f2f2;
  padding: 60px 20px;
}
.tb216-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tb216-image {
  flex: 1;
  min-width: 250px;
  max-width: 450px;
  margin-right: 40px;
}

.tb216-image img {
  width: 90%; /* zmniejsz z 100% */
  max-width: 400px; /* dodaj limit jeśli chcesz */
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.3s;
}



.tb216-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.tb216-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1E2A47;
}

.tb216-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.tb216-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.tb216-features li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #1E2A47;
}

.tb216-features li span {
  color: green;
  margin-right: 8px;
}

.tb216-button {
  display: inline-block;
  background-color: #cc0000;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.tb216-button:hover {
  background-color: #a80000;
}
.tb216-image {
  position: relative;
}

.hotspot {
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: #cc0000;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  z-index: 5;
}

.hotspot .plus {
  color: white;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}

.hotspot:hover {
  transform: scale(1.15);
}

/* Tooltip desktop - bez zmian */
.tooltip {
  position: absolute;
  top: -5px;
  left: 35px;
  width: 220px;
  background: white;
  border-radius: 10px;
  padding: 12px 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  box-sizing: border-box;
}

.hotspot:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
}

.tooltip h4 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #cc0000;
  font-weight: 600;
  text-decoration: underline;
}

.tooltip p {
  margin: 0;
  font-size: 13.5px;
  color: #1E2A47;
  word-wrap: break-word;
}

/* TOOLTIP MODALNY - tylko na telefonie */
@media (max-width: 768px) {
  .tooltip-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 320px;
    background: white;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    z-index: 9999;
    box-sizing: border-box;
  }

  .tooltip-modal h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #cc0000;
    text-decoration: underline;
  }

  .tooltip-modal p {
    font-size: 14px;
    color: #1E2A47;
  }

  .tooltip-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 9998;
  }

  /* Ukryj klasyczny tooltip na mobile */
  .hotspot:hover .tooltip {
    display: none !important;
  }
}
.tb216-image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.tb216-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.tb216-specs {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.tb216-specs-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1E2A47;
  text-transform: uppercase;
}

.tb216-specs-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
}

.spec-item {
  flex: 1 1 18%;
  text-align: center;
  margin: 0 10px;
}

.spec-item img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.tb216-gallery {
  padding: 60px 30px;
  background-color: #f8f8f8;
  overflow: hidden;
}

.tb216-gallery-header h2 {
  font-size: 40px;
  margin-bottom: 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  color: #1E2A47;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #110c2a;
  padding-bottom: 10px;
  max-width: fit-content;
}


.gallery-scroll-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 10px 0;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-scroll-container::-webkit-scrollbar {
  display: none;
}

.gallery-scroll-container.grabbing {
  cursor: grabbing;
}

.gallery-images {
  display: flex;
  gap: 0;
  transition: transform 0.3s ease;
}

.gallery-images img {
  width: 400px;  /* większe zdjęcia */
  height: 300px; /* dostosuj proporcje, jeśli chcesz */
  object-fit: cover;
  cursor: inherit; /* ← to sprawia, że zdjęcia też mają 'grab' / 'grabbing' */
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.gallery-images img:hover {
  transform: scale(1.05);
}
.gallery-scroll-container,
.gallery-scroll-container img {
  user-select: none;           /* Wyłącza zaznaczanie tekstu i obrazów */
  -webkit-user-drag: none;     /* Wyłącza przeciąganie obrazów w WebKit (Chrome, Safari) */
  -moz-user-drag: none;        /* Dla Firefoxa */
  -ms-user-drag: none;         /* Dla IE/Edge */
  user-drag: none;             /* Standard */
}

.gallery-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  
  /* Ukryty na start */
  display: none;

  /* Ustawienia centrowania modala */
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  /* display: flex będzie ustawiane dynamicznie w JS */
}

.gallery-modal.show {
  display: flex;
}

.gallery-modal .modal-content {
  max-width: 90%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


.accordion-section {
  display: flex;
  justify-content: space-between;
  gap: 40px; /* Odstęp między folderami */
  padding: 40px 20px;
  flex-wrap: wrap; /* Umożliwia zawijanie elementów na mniejszych ekranach */
  max-width: 1200px;
  margin: 0 auto;
}

.tb216-accordion-section {
  padding: 60px 30px;
  background-color: #f8f8f8;
}

.dual-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.accordion-column {
  flex: 1 1 500px; /* Zwiększamy szerokość folderów */
  max-width: 600px; /* Ustawiamy większą maksymalną szerokość folderów */
  margin-bottom: 30px; /* Zwiększamy odstęp między folderami */
}

.accordion-title {
  text-align: center;
  font-size: 30px; /* Powiększamy tytuł */
  margin-bottom: 40px; /* Zwiększamy odstęp pod tytułem */
}

.accordion {
  border-top: 2px solid #ccc; /* Zwiększamy grubość linii oddzielającej */
}

.accordion-item {
  border-bottom: 2px solid #ccc; /* Zwiększamy grubość linii oddzielającej itemy */
}

.accordion-header {
  cursor: pointer;
  padding: 20px; /* Powiększamy padding w nagłówkach */
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  transition: background-color 0.3s;
  font-size: 20px; /* Powiększamy czcionkę w nagłówkach */
}

.accordion-header:hover {
  background-color: #f0f0f0;
}

.accordion-icon {
  font-size: 25px; /* Powiększamy ikonę */
  transition: transform 0.3s;
}

.accordion-content {
  display: none;
  padding: 20px; /* Powiększamy padding w treści */
  background-color: #fff;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-in-out, padding 0.3s ease;

}

.accordion-content.open {
  display: block; /* Pokazuje zawartość */
  max-height: 1000px; /* Animacja rozwijania */
}

.highlight-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  /* background-image usunięte */
}

.highlight-background-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.highlight-overlay {
  position: relative; /* żeby mieć wyższy z-index niż obraz */
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.highlight-box {
  background-color: #2c2c2c;
  padding: 40px 30px;
  max-width: 500px;
  color: #fff;
  font-family: Arial, sans-serif;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}


.highlight-box h2 {
  font-size: 29px;
  margin-bottom: 25px;
}

.highlight-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-box li {
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  align-items: flex-start;
}

.highlight-box .plus {
  color: #e60000;
  font-weight: bold;
  margin-right: 10px;
}
@media (max-width: 1024px) {
  .highlight-section {
    height: 500px;
  }

  .highlight-box {
    padding: 30px 20px;
    max-width: 90%;
  }

  .highlight-box h2 {
    font-size: 24px;
  }

  .highlight-box li {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .highlight-section {
    height: auto;
    padding: 40px 0;
  }

  .highlight-overlay {
    justify-content: center;
    padding-left: 0;
    padding: 20px;
  }

  .highlight-box {
    padding: 25px 15px;
    box-shadow: none;
  }

  .highlight-box h2 {
    font-size: 20px;
    text-align: center;
  }

  .highlight-box ul {
    padding-left: 0;
  }

  .highlight-box li {
    font-size: 15px;
    flex-direction: row;
    justify-content: flex-start;
  }
}
/* Sekcja ogólna */
.feature-section {
  display: flex;
  flex-direction: column;
  
}

/* Każdy pasek (blok z opisem + zdjęcia) */
.feature-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 5%;
}

/* Tła naprzemienne dla estetyki */
.feature-block:nth-child(1) { background-color: #f9f9f9; }
.feature-block:nth-child(2) { background-color: #f2f2f2; }
.feature-block:nth-child(3) { background-color: #eaeaea; }

/* Obracanie elementów w bloku – np. silnik */
.feature-block.reverse {
  flex-direction: row-reverse;
}

/* Zdjęcia */
.feature-img {
  max-width: 350px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  cursor: zoom-in;
  transition: transform 0.3s;
}

/* Kolumna z dwoma zdjęciami */
.image-column, .side-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Dwa mniejsze zdjęcia obok siebie */
.stacked-img {
  width: 170px;
  height: calc((350px - 10px) / 2);
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: zoom-in;
  transition: transform 0.3s;
}

/* Tekst opisu */
.feature-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  text-align: left;
}

.feature-text h3 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #222;
  font-weight: 500;
}

.feature-text p {
  font-size: 18.5px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* Modal do powiększania zdjęcia */
.image-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

.image-modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

/* Styl tylko dla kabiny */
.kabina-centered {
  align-items: flex-start;
}
.kabina-adjusted {
  margin-top: -20px;
}

/* Responsywność – układ mobilny */
@media (max-width: 768px) {
  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .feature-text {
    max-width: 100%;
  }

  .feature-img {
    max-width: 90%;
  }

  .feature-text {
    text-align: center;
  }
}
.video-section {
  background-color: #f0f0f0;
  padding: 50px 5%;
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.video-wrapper {
  flex: 1 1 500px;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.order-section {
  padding: 100px 6%;
  background-color: #d5d1d1;
}

.order-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.order-text {
  flex: 1 1 600px;
}

.order-title {
  font-size: 40px;
  font-weight: 800;
  color: #222;
  margin-bottom: 30px;
}

.order-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333;
}

.order-image {
  flex: 1 1 500px;
  text-align: center;
}

.order-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.steps-section {
  padding: 100px 6%;
  background-color: #ffffff;
}

.steps-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #222;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.step-box {
  background-color: #f3f3f3;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.step-box:hover {
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  color: white;
  background-color: #c61e26;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-bottom: 20px;
}

.step-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #222;
}

.step-box p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}
/* Sekcja kontaktowa eksperta */
.contact-expert-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%;
  background-color: #f7f7f7;
}

.contact-text {
  flex: 1;
  text-align: left;
}

.contact-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #555;
}

.whatsapp-link {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.whatsapp-link:hover {
  background-color: #128c7e;
}

/* Styl zdjęcia i danych kontaktowych */
.contact-image {
  text-align: center;
  flex: 1;
  margin-top: 60px;  /* Dalsze obniżenie zdjęcia */
}

.contact-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-size: 24px;
  margin-top: 5px;  /* Dalsze zmniejszenie odstępów */
  font-weight: bold;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 5px;  /* Dalsze zmniejszenie odstępów */
  color: #888;
}

.contact-info {
  font-size: 18px;
  color: #333;
}

.contact-info a {
  color: #0066cc;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .tb216-hero-banner {
    height: auto;
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .tb216-banner-title {
    font-size: 30px;
    left: 0;
  }

  .tb216-banner-button {
    padding: 12px 24px;
    font-size: 16px;
    left: 0;
  }

  .tb216-banner-content {
    max-width: 100%;
    padding-left: 0;
  }

  .tb216-container {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .tb216-image,
  .tb216-text {
    max-width: 100%;
    margin: 0;
  }

  .tb216-image img {
    width: 100%;
    max-width: 100%;
  }

  .tb216-title {
    font-size: 24px;
  }

  .tb216-subtitle {
    font-size: 16px;
  }

  .tb216-button {
    padding: 10px 20px;
    font-size: 16px;
  }

  .tb216-specs-grid {
    flex-direction: column;
    align-items: center;
  }

  .spec-item {
    margin: 20px 0;
  }

  .gallery-images img {
    width: 300px;
    height: 200px;
  }

  .highlight-section {
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
  }

  .highlight-overlay {
    justify-content: center;
    padding-left: 0;
    text-align: center;
  }

  .highlight-box {
    max-width: 100%;
    padding: 30px 20px;
  }

  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
    padding: 30px 20px;
  }

  .feature-text h3 {
    font-size: 24px;
  }

  .feature-text p {
    font-size: 16px;
  }

  .feature-img {
    max-width: 90%;
  }

  .stacked-img {
    width: 48%;
    height: auto;
  }

  .accordion-column {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .accordion-title {
    font-size: 24px;
  }

  .order-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .order-title {
    font-size: 30px;
  }

  .order-description {
    font-size: 16px;
  }

  .steps-title {
    font-size: 30px;
  }

  .step-box p {
    font-size: 16px;
  }

  .contact-expert-section {
    flex-direction: column;
    text-align: center;
  }

  .contact-text h2 {
    font-size: 26px;
  }

  .contact-text h3 {
    font-size: 20px;
  }

  .whatsapp-link {
    padding: 10px 18px;
    font-size: 15px;
  }

  .contact-image {
    margin-top: 30px;
  }

  .name {
    font-size: 20px;
  }

  .subtitle {
    font-size: 16px;
  }

  .contact-info {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
    padding: 30px 4%;
    gap: 20px;
  }

  .video-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .order-section {
    padding: 60px 4%;
  }

  .order-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .order-text {
    flex: 1 1 100%;
  }

  .order-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
  }

  .order-description {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }

  .order-image {
    flex: 1 1 100%;
  }

  .order-image img {
    max-width: 100%;
  }
}
