/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans Pro", "Source Sans", Arial, sans-serif;
  font-size: 16px;
  color: #4f4646;
  background: #fff;
  line-height: 1.65;
}
section.hero { margin-top: 70px; width: 100% !important; max-width: 100% !important; }
@media (max-width: 1199px) { section.hero { margin-top: 50px; } }

/* Neutralizacja reguł z zewnętrznego style.css które mogą kolidować */
section { max-width: none !important; }
section.hero { box-sizing: border-box; }
a { color: #0079b8; text-decoration: none; }
a:hover { color: #ff7e00; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === HEADER – identyczny z oryginalnym style.css === */
header {
  width: 100%;
  height: 70px;
  background: #9acd00;
  position: fixed;
  top: 0;
  z-index: 500;
}
header::after {
  content: '';
  width: 100%;
  height: 70px;
  background: #9acd00;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
header.short, header.short::after { height: 50px; }
header.short nav#menu { top: 10px; }
header.short nav#lang { top: 5px; }
header.short .contact { top: 35px; }
header.short #logo { height: 80px; }
header.short #logo em { height: 0; }
.wrapper {
  width: 1200px;
  position: relative;
  margin: auto;
}
#logo {
  display: block;
  width: 260px;
  height: 110px;
  top: -10px;
  left: 0;
  background: #fff;
  font: 400 40px/40px "Aller Display", sans-serif;
  color: #0079b8;
  transform: rotate(-2deg);
  z-index: 15;
  position: absolute;
  text-decoration: none;
}
#logo::after {
  content: '';
  display: block;
  width: 62px;
  height: 62px;
  background: url(https://kajaki.swornegacie.biz/img/logo.svg) no-repeat center/contain;
  position: absolute;
  top: 10px;
  left: 10px;
}
#logo b {
  position: absolute;
  text-transform: uppercase;
  top: 15px;
  left: 80px;
}
#logo i {
  position: absolute;
  text-transform: lowercase;
  color: #6e6e6e;
  font: 200 21px/21px Aller, sans-serif;
  top: 50px;
  left: 80px;
  font-style: normal;
}
#logo em {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 30px;
  color: #e80000;
  background: #f2f2f2;
  font: 200 18px/30px Aller, sans-serif;
  font-style: normal;
  text-align: center;
}
nav#menu, nav#menu>ul>li {
  display: inline-block;
  position: relative;
}
nav#menu {
  position: relative;
  top: 23px;
}
nav#menu>ul { list-style: none; padding: 0; margin: 0; }
nav#menu>ul>li { margin: 0 3px; }
nav#menu>ul>li>a {
  display: block;
  color: #fff;
  font: 400 18px/18px Aller, sans-serif;
  text-shadow: 1px 1px 0 rgba(82,109,0,.3);
  padding: 5px 8px;
  text-decoration: none;
}
nav#menu>ul>li>a:hover {
  background: rgba(116,164,0,.5);
  border-radius: 3px;
}
nav#menu li ul {
  display: none;
  position: absolute;
  top: 28px;
  left: 0;
  border-radius: 3px;
  background: #749a00;
  width: 200px;
  text-align: left;
  padding: 5px;
  list-style: none;
}
nav#menu li ul a {
  display: block;
  padding: 8px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
}
nav#menu li ul a:hover {
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  border-bottom: 1px solid transparent;
}
nav#menu li ul li:last-child a { border-bottom: none; }
nav#menu li:hover ul { display: block; }
nav#menu li ul li.back { display: none; }
nav#lang {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  top: 18px;
}
nav#lang ul { list-style: none; padding: 0; margin: 0; display: flex; }
nav#lang li { margin: 0 1px; }
nav#lang li a {
  display: block;
  color: #fff;
  font: 200 14px/26px Aller, sans-serif;
  width: 26px;
  height: 26px;
  background: #97c900;
  text-align: center;
  text-decoration: none;
}
nav#lang li a:hover { background: #e80100; }
header .contact {
  height: 50px;
  background: #fbffed;
  display: block;
  position: absolute;
  top: 60px;
  right: 0;
  width: auto;
  min-width: 620px;
  line-height: 60px;
  transform: rotate(.5deg);
  z-index: 5;
  font-family: "Source Sans", sans-serif;
  font-size: 17px;
  border-bottom: 2px solid #efefef;
  transition: top ease .5s;
  white-space: nowrap;
  padding: 0 24px;
}
header .contact b { font-weight: 700; color: #5e7d00; }
.contact .email, .contact .phone {
  position: relative;
  margin-left: 35px;
  color: #2a2a2a;
  height: 50px;
  text-decoration: none;
}
.contact a { transition: color ease .5s; }
.contact a:hover { color: #e80100; }
.contact a::before {
  position: absolute;
  font: 400 18px FontAwesome;
  color: #2a2a2a;
  height: 50px;
  top: 0;
}
.contact a.phone::before { content: none; }
.contact a.email::before { content: none; }
.contact .fa { margin-right: 5px; color: #5e7d00; font-size: 16px; }
#mobile-menu-logo, #mobile-menu-cta { display: none; }

#nav-toggle {
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: none;
  position: fixed;
  top: 3px;
  right: 12px;
  z-index: 600;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  border: none;
  padding: 0;
}
#nav-toggle svg { display: block; }
#nav-toggle .ico-menu { display: block; }
#nav-toggle .ico-close { display: none; }
#nav-toggle.open .ico-menu { display: none; }
#nav-toggle.open .ico-close { display: block; }
@media (max-width: 1199px) {
  header { position: fixed !important; top: 0; height: 50px; }
  header::after { height: 50px; }
  .wrapper { width: 100%; box-sizing: border-box; }
  #nav-toggle { display: flex; }

  #menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 490;
  }
  #menu-overlay.show { display: block; }

  nav#menu {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 495;
    background: #1e1e1e !important;
    text-align: center !important;
    transform: translateY(-100%);
    transition: transform .35s ease-out;
    display: flex !important;
    flex-direction: column;
    padding: 0;
  }
  nav#menu.show { transform: translateY(0); }

  #mobile-menu-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 130px;
    background: #292929;
    flex-shrink: 0;
    order: -1;
  }
  #logo-mobile {
    display: block;
    width: 240px;
    height: 100px;
    background: #fff;
    transform: rotate(-2deg);
    position: relative;
    text-decoration: none;
    font: 400 36px/40px "Aller Display", sans-serif;
    color: #0079b8;
  }
  #logo-mobile::after {
    content: '';
    display: block;
    width: 55px;
    height: 55px;
    background: url(https://kajaki.swornegacie.biz/img/logo.svg) no-repeat center/contain;
    position: absolute;
    top: 8px;
    left: 8px;
  }
  #logo-mobile b { position: absolute; top: 12px; left: 72px; text-transform: uppercase; color: #0079b8; font-size: 36px; }
  #logo-mobile i { position: absolute; top: 46px; left: 72px; font: 200 18px/18px Aller, sans-serif; color: #6e6e6e; font-style: normal; }
  #logo-mobile em { display: block; position: absolute; bottom: 0; left: 0; right: 0; height: 28px; color: #e80000; background: #f2f2f2; font: 200 15px/28px Aller, sans-serif; font-style: normal; text-align: center; }

  nav#menu > ul { width: 100%; padding: 0; margin: 0; display: block; flex: 1; }
  nav#menu li, nav#menu>ul>li { position: static; margin: 0; width: 100%; display: block; }
  nav#menu>ul>li>a {
    width: 100%; display: flex; align-items: center; justify-content: center;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    line-height: 56px;
    text-shadow: none;
    color: #fff !important;
    font-size: 1.05rem;
    font-weight: 600;
    background: none !important;
  }
  nav#menu>ul>li>a:hover, nav#menu>ul>li>a:active { background: rgba(154,205,0,.2) !important; color: #9acd00 !important; }

  nav#menu>ul>li>a.has-sub::after { content: ' ▾'; font-size: .8rem; margin-left: 6px; }
  nav#menu>ul>li>a.has-sub.open::after { content: ' ▴'; }

  nav#menu li ul {
    position: static !important;
    width: 100% !important;
    display: none;
    height: auto !important;
    background: rgba(255,255,255,.05) !important;
    box-shadow: none;
    padding: 0;
  }
  nav#menu li ul.show { display: block; }
  nav#menu li ul a {
    padding: 0 36px;
    line-height: 46px;
    font-size: .9rem;
    color: rgba(255,255,255,.75) !important;
    border-bottom: 1px solid rgba(255,255,255,.05);
    display: block;
    background: none !important;
  }
  nav#menu li ul a:hover { color: #9acd00 !important; background: rgba(154,205,0,.1) !important; }
  nav#menu .back { display: none; }

  #mobile-menu-cta {
    display: block;
    padding: 20px 24px;
    background: #2a2a2a;
    flex-shrink: 0;
  }
  #mobile-menu-cta a {
    display: block;
    background: #5e7d00;
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: background .2s;
    border: none !important;
    border-bottom: none !important;
  }
  #mobile-menu-cta a:hover, #mobile-menu-cta a:active { background: #e80100 !important; }

  nav#lang { display: none; }
}
@media (max-width: 900px) {
  header .contact { display: none; }
}

/* === HERO === */
.hero {
  color: #fff;
  padding: 70px 20px 60px;
  text-align: center;
  position: relative;
  min-height: 520px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: #5e7d00;
  border-radius: 30px;
  padding: 6px 20px;
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #fff;
}
.hero h1 {
  font-size: clamp(2rem, 10vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero p {
  font-size: clamp(1rem, 2.10vw, 1.2rem);
  max-width: 680px;
  margin: 0 auto 32px;
  opacity: .93;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: #5e7d00;
  color: #fff;
  padding: 14px 32px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary:hover { background: #e80100; color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s;
  text-decoration: none;
}
.btn-outline:hover { background: #fff; color: #5e7d00; }

/* === BOOKING FORM BAR === */
.booking-bar-wrap {
  position: relative;
  z-index: 100;
  padding: 0 20px;
  margin-top: -36px;
  margin-bottom: -36px;
}
.booking-bar {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  padding: 0 0 0 20px;
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
}
.booking-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 0;
  border-right: 1px solid #e8e8e8;
  white-space: nowrap;
  flex-shrink: 0;
}
.booking-title a { text-decoration: none; }
.booking-title h2 {
  font-size: .82rem;
  font-weight: 800;
  color: #5e7d00;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0;
}
.booking-title .fa { display: none; }
#field-datestart::after,
#field-dateend::after,
#field-type::after,
#field-river::after,
#field-people::after { content: none !important; display: none !important; }

.bico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #9acd00;
  stroke: #9acd00;
}
.booking-title .bico { color: #5e7d00; stroke: #5e7d00; width: 20px; height: 20px; }
.booking-fields {
  display: flex;
  flex: 1;
  align-items: stretch;
}
.booking-field {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  border-right: 1px solid #e8e8e8;
  flex: 1;
  min-width: 0;
  cursor: pointer;
}
.booking-field:last-of-type { border-right: none; }
.booking-field .fa {
  color: #9acd00;
  font-size: .95rem;
  flex-shrink: 0;
}
.booking-field select,
.booking-field input[type="date"],
.booking-field input[type="number"] {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: .82rem;
  color: #333;
  width: 100%;
  cursor: pointer;
}
.booking-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.booking-field select option { color: #333; }
.booking-field input[type="date"] {
  position: relative;
}
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.booking-field input[type="number"] { -moz-appearance: textfield; }
.booking-field input[type="number"]::-webkit-inner-spin-button { display: none; }
#field-proceed {
  background: #e80100;
  color: #fff;
  border: none;
  border-radius: 0 12px 12px 0;
  padding: 0 26px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background .2s;
  font-family: inherit;
  flex-shrink: 0;
  align-self: stretch;
  margin: 0;
}
#field-proceed:hover { background: #5e7d00; }
@media (max-width: 900px) {
  .booking-bar-wrap {
    position: static;
    padding: 0 12px;
    margin-top: -24px;
    margin-bottom: 0;
  }
  .booking-bar {
    flex-direction: column;
    border-radius: 10px;
    padding: 0;
  }
  .booking-title {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    padding: 16px 20px;
  }
  .booking-fields { flex-direction: column; }
  .booking-field {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    padding: 14px 20px;
    flex: none;
  }
  #field-proceed {
    border-radius: 0 0 10px 10px;
    justify-content: center;
    padding: 16px;
  }
}

/* === QUICK STATS === */
.stats-bar {
  background: #5e7d00;
  color: #fff;
  position: relative;
  z-index: 1;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 58px 20px 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,.25);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.stat-label {
  font-size: .82rem;
  opacity: .85;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
section:nth-child(even) { background: #f9f9f6; }

/* === SECTION TITLES === */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #3a5e00;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  font-size: 1.05rem;
  color: #6b6060;
  margin-bottom: 36px;
  max-width: 640px;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: #9acd00;
  border-radius: 2px;
  margin: 0 0 20px;
}

/* === INTRO 2-COL === */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.intro-grid .text-col p { margin-bottom: 16px; font-size: 1.05rem; }
.intro-grid .text-col ul {
  margin: 12px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.intro-grid .text-col ul li {
  padding-left: 24px;
  position: relative;
}
.intro-grid .text-col ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #9acd00;
  font-size: 1.1rem;
}
.highlights-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.highlight-card {
  background: #fff;
  border-left: 4px solid #9acd00;
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.highlight-card h3 { font-size: 1rem; font-weight: 700; color: #3a5e00; margin-bottom: 6px; }
.highlight-card p { font-size: .9rem; margin: 0; }

/* === TRIPS / PACKAGES === */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.package-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.package-head {
  background: #9acd00;
  color: #fff;
  padding: 18px 16px;
  text-align: center;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.package-head.dark { background: #749a00; }
.package-head.darker { background: #3a5e00; }
.package-days {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.package-days span { font-size: .9rem; font-weight: 400; }
.package-title { font-size: .95rem; font-weight: 700; margin-top: 4px; }
.package-route { font-size: .8rem; opacity: .88; margin-top: 4px; }
.package-body { padding: 20px 24px; flex: 1; }
.package-body p { font-size: .95rem; margin-bottom: 14px; }
.day-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; border: 1px solid #e8e8e8; border-radius: 6px; overflow: hidden; }
.day-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0;
  font-size: .86rem;
  border-bottom: 1px solid #e8e8e8;
}
.day-item:last-child { border-bottom: none; }
.day-num {
  background: transparent;
  color: #333;
  border-right: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
  align-self: stretch;
  min-width: 32px;
}
.day-content { padding: 8px 10px; }
.day-route { font-weight: 700; display: block; }
.day-km { color: #333; font-size: .82rem; display: block; font-weight: 700; }
.day-amenities { color: #777; font-size: .78rem; display: block; }
.day-amenities::before { content: 'Udogodnienia: '; font-weight: 600; color: #555; }
.package-footer {
  padding: 0 24px 20px;
}
.btn-package {
  display: block;
  text-align: center;
  background: #9acd00;
  color: #fff;
  padding: 11px 20px;
  border-radius: 5px;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s;
  text-decoration: none;
}
.btn-package:hover { background: #e80100; color: #fff; }

/* === STAGES / ACCORDION === */
.etapy-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.etapy-img-col img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  position: sticky;
  top: 90px;
}
@media (max-width: 900px) {
  .etapy-grid { grid-template-columns: 1fr; }
  .etapy-img-col { display: none; }
}
.stages-list { display: flex; flex-direction: column; gap: 16px; }
.stage-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  overflow: hidden;
}
.stage-summary {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.stage-summary::-webkit-details-marker { display: none; }
details[open] .stage-summary { border-bottom: 2px solid #9acd00; }
.stage-num {
  background: #9acd00;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}
.stage-meta { flex: 1; }
.stage-meta h3 { font-size: 1.05rem; font-weight: 700; color: #3a5e00; }
.stage-labels { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 5px; }
.stage-label { font-size: .78rem; background: #f0f4e8; border-radius: 4px; padding: 2px 8px; color: #4a6a00; font-weight: 600; }
.stage-arrow {
  font-size: 1.2rem;
  color: #9acd00;
  transition: transform .25s;
}
details[open] .stage-arrow { transform: rotate(90deg); }
.stage-body {
  padding: 24px;
  font-size: .97rem;
  line-height: 1.7;
}
.stage-body p { margin-bottom: 14px; }
.stage-body p:last-child { margin-bottom: 0; }

/* === TRANSPORT TABLE === */
.transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.transport-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #3a5e00;
  margin-bottom: 14px;
  border-bottom: 2px solid #9acd00;
  padding-bottom: 8px;
}
.transport-col ul { display: flex; flex-direction: column; gap: 6px; }
.transport-col li {
  display: flex;
  justify-content: space-between;
  font-size: .92rem;
  padding: 6px 10px;
  border-radius: 4px;
}
.transport-col li:nth-child(odd) { background: #f2f8e8; }
.transport-col li b { color: #3a5e00; }
.transport-base {
  font-weight: 700;
  background: #9acd00 !important;
  color: #fff;
  border-radius: 4px;
}
.transport-base b { color: #fff !important; }

/* === GALLERY === */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: center;
}
.tab-btn {
  background: #f0f0f0;
  border: none;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: .85rem;
  cursor: pointer;
  font-family: inherit;
  color: #4f4646;
  transition: background .2s, color .2s;
}
.tab-btn.active, .tab-btn:hover { background: #9acd00; color: #fff; }
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(154,205,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* === LIGHTBOX === */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
}
#lb-close {
  position: absolute;
  top: 16px;
  right: 24px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}
#lb-prev, #lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(154,205,0,.7);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 4px;
}
#lb-prev { left: 12px; }
#lb-next { right: 12px; }
#lb-prev:hover, #lb-next:hover { background: #9acd00; }

/* === TESTIMONIALS === */
.reviews-slider-wrap { position: relative; overflow: hidden; }
.reviews-slider { display: flex; transition: transform .45s ease; will-change: transform; }
.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  position: relative;
  flex-shrink: 0;
  margin: 0 7px;
  box-sizing: border-box;
}
.review-card::before {
  content: '"';
  font-size: 5rem;
  color: #9acd00;
  line-height: .7;
  position: absolute;
  top: 14px;
  left: 16px;
  opacity: .25;
}
.review-text {
  font-size: .95rem;
  font-style: italic;
  margin-bottom: 14px;
  padding-top: 8px;
}
.review-author {
  font-weight: 700;
  font-size: .88rem;
  color: #3a5e00;
}
.stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 8px; font-size: .9rem; }
.reviews-nav { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.reviews-nav button {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s;
}
.reviews-nav button:hover { background: #9acd00; border-color: #9acd00; }
.reviews-dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.reviews-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: background .2s; }
.reviews-dots span.active { background: #9acd00; }
.reviews-actions { display: flex; justify-content: center; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.btn-review { padding: 11px 28px; border-radius: 6px; font-weight: 700; font-size: .95rem; text-decoration: none; transition: background .2s, color .2s; }
.btn-review-add { background: #9acd00; color: #fff; }
.btn-review-add:hover { background: #e80100; color: #fff; }
.btn-review-all { background: transparent; border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-review-all:hover { background: #fff; color: #2a2a2a; }
@media(max-width:768px){
  .review-card { flex: 0 0 calc(100% - 14px); }
}

/* === NATURE HIGHLIGHTS === */
.nature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.nature-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
  transition: transform .2s;
}
.nature-card:hover { transform: translateY(-3px); }
.nature-icon { font-size: 2.8rem; margin-bottom: 12px; }
.nature-card h3 { font-size: 1rem; font-weight: 700; color: #3a5e00; margin-bottom: 8px; }
.nature-card p { font-size: .9rem; color: #666; }

/* === CTA BANNER === */
.cta-banner {
  background: #5e7d00;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-banner p { font-size: 1.1rem; margin-bottom: 32px; opacity: .92; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-contact { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; flex-direction: column; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #5e7d00;
  font-size: 1.1rem; font-weight: 800;
  padding: 13px 28px; border-radius: 6px;
  text-decoration: none; transition: background .2s, color .2s;
}
.cta-btn-phone:hover { background: #e80100; color: #fff; }
.cta-btn-mail {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  font-size: 1.1rem; font-weight: 700;
  padding: 13px 28px; border-radius: 6px;
  text-decoration: none; transition: background .2s, color .2s, border-color .2s;
}
.cta-btn-mail:hover { background: #fff; color: #5e7d00; border-color: #fff; }
.cta-info { margin-top: 18px; font-size: .9rem; opacity: .8; }

/* === MAP === */
.map-wrapper {
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* === FOR WHOM === */
#dla-kogo {
  background: #2a2a2a !important;
  text-align: center;
}
#dla-kogo .section-divider { margin: 0 auto 20px; background: rgba(255,255,255,.4); }
#dla-kogo .section-title { color: #fff; }
#dla-kogo .section-sub { color: rgba(255,255,255,.85); margin-left: auto; margin-right: auto; }
.whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}
.whom-card {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: #fff;
  border-radius: 8px;
  padding: 22px 16px;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.whom-card:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.whom-card h3 { font-size: 1rem; font-weight: 700; margin: 0; }
.whom-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.whom-ctas .btn-primary {
  background: #9acd00;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.whom-ctas .btn-primary:hover { background: #e80100; color: #fff; box-shadow: 0 6px 18px rgba(232,1,0,.35); }
.whom-ctas .btn-outline {
  border-color: #fff;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.whom-ctas .btn-outline:hover { background: #fff; color: #5e7d00; }

/* === DLACZEGO WARTO === */
#dlaczego { background: #fff; }
.dlaczego-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.dlaczego-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #3a5e00;
  margin: 0 0 12px;
}
.dlaczego-text p { margin-bottom: 14px; font-size: 1rem; }
.dlaczego-text ul {
  margin: 10px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.dlaczego-text ul li {
  padding-left: 20px;
  position: relative;
  font-size: 1rem;
}
.dlaczego-text ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #9acd00;
}
.dlaczego-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dlaczego-card {
  background: #5e7d00;
  color: #fff;
  border-radius: 8px;
  padding: 18px 16px;
  font-size: .92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dlaczego-card svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: rgba(255,255,255,.8);
}
@media (max-width: 768px) {
  .dlaczego-grid { grid-template-columns: 1fr; }
  .dlaczego-cards { grid-template-columns: 1fr; }
}

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 100%; }
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 20px;
  font-size: .98rem;
  font-weight: 600;
  color: #3a5e00;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: #9acd00; }
details[open] .faq-q::after { content: '−'; }
details[open] .faq-q { border-bottom: 1px solid #e0ecc5; }
.faq-a { padding: 16px 20px; font-size: .95rem; line-height: 1.65; }

/* === FOOTER === */
#site-footer {
  background: #2a2a2a;
  color: #d7d7d7;
  padding: 0 !important;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.footer-col h3 {
  color: #9acd00;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { color: #d7d7d7; font-size: .88rem; }
.footer-col li a:hover { color: #9acd00; }
.footer-contact-col p { font-size: .9rem; margin-bottom: 6px; }
.footer-contact-col a { color: #9acd00; }
.footer-bottom {
  background: #1a1a1a;
  text-align: center;
  padding: 16px 20px;
  font-size: .8rem;
  color: #888;
  margin: 0;
}
#site-footer { display: flex; flex-direction: column; }
#site-footer .footer-bottom { margin-top: auto; }
.footer-bottom a { color: #9acd00; }

/* === SOCIAL BAR === */
#social-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 400;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: -2px 0 12px rgba(0,0,0,.2);
}
.social-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #5e7d00;
  border-bottom: 1px solid rgba(255,255,255,.2);
  text-decoration: none;
  transition: background .2s;
}
.social-bar-item:last-child { border-bottom: none; }
.social-bar-item:hover { background: #e80100; }
@media(max-width:600px){
  #social-bar {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    transform: none;
    flex-direction: row;
    border-radius: 0;
    width: 100%;
    z-index: 450;
    box-shadow: 0 -2px 12px rgba(0,0,0,.2);
  }
  .social-bar-item {
    flex: 1;
    height: 52px;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,.2);
  }
  .social-bar-item:last-child { border-right: none; }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .transport-grid { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .header-contact { align-items: flex-start; }
  .hero { padding: 50px 5% 40px; min-height: 380px; }
  section { padding: 32px 0; }

  .container,
  .stats-bar-inner,
  .footer-inner,
  .footer-bottom,
  .cta-banner { padding-left: 10vw !important; padding-right: 10vw !important; box-sizing: border-box; }

  .hero { padding-left: 10vw !important; padding-right: 10vw !important; }
  .booking-bar-wrap { padding-left: 10vw !important; padding-right: 10vw !important; }

  body { overflow-x: hidden; }
  section, div { max-width: 100vw; }

  .stat-item { min-width: 130px; }
  .stat-num { font-size: 1.6rem; }

  .booking-bar-wrap { margin-top: -28px; margin-bottom: -28px; padding: 0 !important; }
  .booking-bar { border-radius: 0; }
  #field-proceed { border-radius: 0; }
  .stats-bar-inner { padding: 48px 5% 18px; }

  .packages-grid { grid-template-columns: 1fr !important; }
  .package-head { min-height: auto; }

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

  .dlaczego-grid { grid-template-columns: 1fr; gap: 24px; }
  .dlaczego-cards { grid-template-columns: 1fr; }

  .highlights-grid { grid-template-columns: 1fr; }
  .highlights-col { gap: 12px; }

  .stage-labels { gap: 4px; }
  .stage-label { font-size: .72rem; }

  .booking-bar-wrap { margin-top: 12px; margin-bottom: 0; }

  .gallery-tabs { gap: 6px; }
  .tab-btn { font-size: .78rem; padding: 6px 12px; }

  .review-card { flex: 0 0 calc(100% - 14px) !important; }

  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btn-phone, .cta-btn-mail { width: 100%; max-width: 300px; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }

  .section-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .btn-reserve { display: none; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }

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

  .stats-bar-inner { padding: 44px 5% 16px; }
  .stat-item { min-width: 100px; padding: 8px 10px; }
  .stat-num { font-size: 1.4rem; }

  .footer-inner { grid-template-columns: 1fr; }

  .packages-grid { grid-template-columns: 1fr !important; }

  .stage-summary { padding: 14px 16px; gap: 10px; }
  .stage-num { width: 32px; height: 32px; font-size: .85rem; }
  .stage-body { padding: 16px; }

  .day-num { min-width: 28px; font-size: .7rem; }

  .reviews-actions { flex-direction: column; align-items: center; }
  .btn-review { width: 100%; max-width: 280px; text-align: center; }
}
