/**
 * Plik: eksperci360.css
 * Lokalizacja: assets/css/eksperci360.css
 */



/*
*
HEADER
*
*/

/* ===== MAIN HEADER ===== */
.main-header {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, position 0s, top 0s;
    padding: 20px 0;
}

/* Header scrolled state - FIXED + top: 0 + białe tło */
.main-header.scrolled {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

/* Header Container */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: block;
    line-height: 0;
}

.header-logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.main-header.scrolled .header-logo img {
    height: 40px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--tekst-kolor-3);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Optional: Underline effect on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== BURGER MENU ===== */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background-color: var(--tekst-kolor-3);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tlo-kolor-1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-wrapper {
    min-height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-menu-logo a {
    display: block;
    line-height: 0;
}

.mobile-menu-logo img {
    height: 45px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--tekst-kolor-1);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

/* Mobile Navigation */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    color: var(--tekst-kolor-1);
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    transition: opacity 0.3s ease;
    display: block;
}

.mobile-nav-link:hover {
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
}

@media (min-width: 992px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .header-logo img {
        height: 40px;
    }

    .main-header.scrolled .header-logo img {
        height: 35px;
    }

    .mobile-nav-link {
        font-size: 24px;
    }

    .mobile-menu-wrapper {
        padding: 20px;
    }

    .mobile-menu-header {
        margin-bottom: 40px;
    }
}

/*
*
eof HEADER
*
*/

/** s1  **/

@media (max-width: 479px) {
    #s1>.ct-section-inner-wrap {
        padding-top: 75px !important;
    }
}

/** eof s1 **/

/** s12 **/

#s12 h2 {
  color: var(--tekst-kolor-1);
}

#s12 > .ct-section-inner-wrap {
padding-bottom: 0px;
}

/** eof s12  **/


/*
*
accordion
*
*/

/* ===== ACCORDION ===== */
.custom-accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.accordion-item:hover {
}

.accordion-item.active {
}

/* Accordion Header */
.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px 20px 0px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {

}

.accordion-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Accordion Icon */
.accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 20px;
}

.accordion-icon svg {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.accordion-item.active .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.accordion-item.active .icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

/* Accordion Body - SMOOTH HEIGHT ANIMATION */
.accordion-body {
    height: 0;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content {
    padding: 25px 25px 25px 0px;
    line-height: 1.6;
}

.accordion-content p {
    margin: 0 0 15px 0;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .accordion-header {
        padding: 15px 20px;
    }

    .accordion-title h4 {
        font-size: 16px;
    }

    .accordion-content {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
}

/*
*
EOF accordion
*
*/



/**
slider
**/

.custom-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px 60px;
}

.custom-slider {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-item.active {
    opacity: 1;
}

.slider-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 20px;
}

.slider-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slider-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tlo-kolor-2);
}

.slider-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.slider-description {
    font-size: 16px;
    line-height: 1.6;
}

.slider-image {
  justify-content: center;
  text-align: center;
}

.slider-image img {
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    max-width: 300px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid var(--tlo-kolor-1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--tlo-kolor-1);
    border-color: var(--tlo-kolor-1);
}

.slider-nav:hover svg {
    stroke: #ffffff;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--tekst-kolor-3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--tekst-kolor-5);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .slider-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-image {
        order: -1;
    }

    .slider-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .custom-slider-wrapper {
        padding: 0 50px 40px;
        width: 100%;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-title {
        font-size: 20px;
    }

    .slider-description {
        font-size: 14px;
    }

    .slider-content {
        padding: 20px 10px;
    }
}

/**
eof slider
**/


/***
taby
**/

.custom-tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== DESKTOP - TABS ===== */
@media (min-width: 769px) {
    .custom-tabs-wrapper {
        display: grid;
        grid-template-columns: minmax(auto, 400px) 1fr;
        gap: 60px;
        align-items: start;
    }

    .tabs-header {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: sticky;
        top: 120px;
    }

    .tab-button {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 20px;
        background: var(--tlo-kolor-4);
        border: none;
        cursor: pointer;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-align: left;
    }

    .tab-button:hover {
        opacity: 0.9;
    }

    .tab-button.active {
        background: var(--tlo-kolor-1);
    }

    .tab-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .tab-label {
        font-size: 16px;
        font-weight: 600;
        color: var(--tekst-kolor-4);
        transition: color 0.3s ease;
    }

    .tab-button.active .tab-label {
        color: var(--tekst-kolor-1);
    }

    .tabs-content {
        position: relative;
        min-height: 200px;
    }

    .tab-panel {
        display: none;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .tab-panel.active {
        display: block;
        opacity: 1;
    }

    .tab-accordion-header {
        display: none;
    }

    .tab-accordion-body {
        height: auto !important;
    }

    .tab-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .tab-text p {
        margin: 0 0 15px 0;
    }

    .tab-text p:last-child {
        margin-bottom: 0;
    }
}

/* ===== MOBILE - ACCORDION ===== */
@media (max-width: 768px) {
    .custom-tabs-wrapper {
        display: block;
        padding: 0 20px;
    }

    .tabs-header {
        display: none;
    }

    .tabs-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .tab-panel {
        display: block;
        opacity: 1;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        overflow: hidden;
    }

    .tab-accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 15px 20px;
        background: var(--tlo-kolor-4);
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .tab-panel.active .tab-accordion-header {
        background: var(--tlo-kolor-1);
    }

    .tab-accordion-title {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
    }

    .tab-accordion-title .tab-icon {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    .tab-accordion-title .tab-label {
        font-size: 16px;
        font-weight: 600;
        color: var(--tekst-kolor-4);
        transition: color 0.3s ease;
    }

    .tab-panel.active .tab-accordion-title .tab-label {
        color: var(--tekst-kolor-1);
    }

    .tab-accordion-icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        position: relative;
    }

    .tab-accordion-icon svg {
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        stroke: var(--tekst-kolor-4);
    }

    .tab-panel.active .tab-accordion-icon svg {
        stroke: var(--tekst-kolor-1);
    }

    .tab-accordion-icon .icon-plus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .tab-accordion-icon .icon-minus {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .tab-panel.active .tab-accordion-icon .icon-plus {
        opacity: 0;
        transform: rotate(90deg);
    }

    .tab-panel.active .tab-accordion-icon .icon-minus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .tab-accordion-body {
        height: 0;
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .tab-text {
        padding: 20px;
        font-size: 14px;
        line-height: 1.6;
    }

    .tab-text p {
        margin: 0 0 15px 0;
    }

    .tab-text p:last-child {
        margin-bottom: 0;
    }
}

/**
 EOF TABY
**/



/**
timeline
**/

.timeline-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-inner {
    padding: 0 20px;
}

.timeline-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tekst-kolor-2);
    text-align: center;
    margin-bottom: 15px;
}

.timeline-headline {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 60px 0;
}

.timeline-wrapper {
    position: relative;
    margin-top: 60px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 2px;
    background: #eaeaea;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--tlo-kolor-5);
    transition: height 0.3s ease;
}

.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: start;
    gap: 40px;
    margin-bottom: 80px;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.timeline-item:first-child {
    margin-top: 0;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-content.left {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.timeline-content.right {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.timeline-text {
    font-size: 15px;
    line-height: 1.6;
}

.timeline-text p {
    margin: 0 0 10px 0;
}

.timeline-text p:last-child {
    margin: 0;
}

.timeline-marker {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.timeline-marker-dot {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 4px solid #eaeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.timeline-marker-dot svg {
    width: 20px;
    height: 20px;
    color: #eaeaea;
    transition: color 0.4s ease;
}

.timeline-item.active .timeline-marker-dot {
    border-color: var(--tlo-kolor-1);
    background: var(--tlo-kolor-1);
}

.timeline-item.active .timeline-marker-dot svg {
    color: #ffffff;
}

.timeline-date {
    background: #d5d5d5;
    color: #666666;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    opacity: 0;
    transition: all 0.4s ease;
    grid-row: 1;
    width: fit-content;
}

.timeline-item.active .timeline-date {
    opacity: 1;
    background: var(--tlo-kolor-1);
    color: #ffffff;
}

.timeline-date.left {
    grid-column: 3;
    justify-self: start;
}

.timeline-date.right {
    grid-column: 1;
    justify-self: end;
}

@media (max-width: 768px) {
  .timeline-headline {
      font-size: 28px;
      margin-bottom: 40px;
  }

  .timeline-line {
      left: 30px;
      top: 15px;
  }

  .timeline-items {
      position: relative;
      z-index: 2;
  }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
        gap: 15px 20px;
        margin-bottom: 50px;
    }

    .timeline-marker {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .timeline-date {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-self: start !important;
    }

    .timeline-content {
        grid-column: 2 !important;
        grid-row: 2 !important;
        text-align: left !important;
        padding: 20px;
    }

    .timeline-marker-dot {
        width: 30px;
        height: 30px;
    }

    .timeline-marker-dot svg {
        width: 16px;
        height: 16px;
    }

    .timeline-title {
        font-size: 18px;
    }

    .timeline-text {
        font-size: 14px;
    }
}

/**
eof timeline
**/



/** taby s20 **/

.s20-section {
    padding: 80px 0;
}

.s20-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.s20-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 15px;
}

.s20-headline {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 60px 0;
}

.s20-tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .s20-tabs-wrapper {
        display: grid;
        grid-template-columns: minmax(auto, 400px) 1fr;
        gap: 60px;
        align-items: start;
    }

    .s20-tabs-header {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: sticky;
        top: 120px;
    }

    .s20-tab-button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px;
      background: var(--tlo-kolor-4);
      border: none;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.3s ease;
      text-align: left;
      box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.1) !important;
       position: relative;
  }

    .s20-tab-button:hover {
        opacity: 0.9;
    }

    .s20-tab-button.active {
        background: var(--tlo-kolor-1);
        box-shadow: none !important;
    }

    .s20-tab-label {
        font-size: 16px;
        font-weight: 600;
        color: var(--tekst-kolor-4);
        transition: color 0.3s ease;
    }

    .s20-tab-label::after {
        content: "\f061";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-left: auto;
        display: inline-block;
        font-size: 0.8em;
        transition: transform 0.3s ease;
        position: absolute;
        right: 20px;
        top: 23px;
    }

    .s20-tab-button.active .s20-tab-label {
        color: var(--tekst-kolor-1);
    }

    .s20-tab-button.active .s20-tab-label::after {
        transform: translateX(5px);
    }

    .s20-tabs-content {
        position: relative;
        min-height: 200px;
    }

    .s20-tab-panel {
        display: none;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .s20-tab-panel.active {
        display: block;
        opacity: 1;
    }

    .s20-tab-accordion-header {
        display: none;
    }

    .s20-tab-accordion-body {
        height: auto !important;
    }

    .s20-tab-text {
        font-size: 16px;
        line-height: 1.6;
        background: var(--tlo-kolor-3);
        border-radius: 15px;
        padding: 30px;
    }

    .s20-tab-text p {
        margin: 0 0 15px 0;
    }

    .s20-tab-text p:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .s20-tabs-wrapper {
        display: block;
    }

    .s20-tabs-header {
        display: none;
    }

    .s20-tabs-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .s20-tab-panel {
        display: block;
        opacity: 1;
        border-radius: 8px;
        overflow: hidden;
    }

    .s20-tab-accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 15px 20px;
        background: var(--tlo-kolor-4);
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .s20-tab-panel.active .s20-tab-accordion-header {
        background: var(--tlo-kolor-1);
    }

    .s20-tab-accordion-title {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
    }

    .s20-tab-accordion-title .s20-tab-label {
        font-size: 16px;
        font-weight: 600;
        color: var(--tekst-kolor-4);
        transition: color 0.3s ease;
    }

    .s20-tab-panel.active .s20-tab-accordion-title .s20-tab-label {
        color: var(--tekst-kolor-1);
    }

    .s20-tab-accordion-icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        position: relative;
    }

    .s20-tab-accordion-icon svg {
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        stroke: var(--tekst-kolor-4);
    }

    .s20-tab-panel.active .s20-tab-accordion-icon svg {
        stroke: var(--tekst-kolor-1);
    }

    .s20-tab-accordion-icon .icon-plus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .s20-tab-accordion-icon .icon-minus {
        opacity: 0;
        transform: rotate(-90deg);
    }

    .s20-tab-panel.active .s20-tab-accordion-icon .icon-plus {
        opacity: 0;
        transform: rotate(90deg);
    }

    .s20-tab-panel.active .s20-tab-accordion-icon .icon-minus {
        opacity: 1;
        transform: rotate(0deg);
    }

    .s20-tab-accordion-body {
        height: 0;
        overflow: hidden;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .s20-tab-text {
        padding: 15px;
        font-size: 14px;
        line-height: 1.6;
        border-radius: 15px;
        text-align: left;
    }

    .s20-tab-text p {
        margin: 0 0 15px 0;
    }

    .s20-tab-text p:last-child {
        margin-bottom: 0;
    }
}

/** eof taby s20 **/


/*** slider galeria s25 ***/
.gallery-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 15px;
}

.gallery-headline {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 60px 0;
}

.gallery-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px 60px;
}

.gallery-slider {
    overflow: hidden;
    border-radius: 15px;
}

.gallery-slides-container {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    flex-shrink: 0;
    padding: 0 10px;
}

.gallery-image-link {
    display: block;
    line-height: 0;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Desktop - 3 slides visible */
@media (min-width: 769px) {
    .gallery-slide {
        width: calc(100% / 3);
    }
}

/* Mobile - 1 slide visible */
@media (max-width: 768px) {
    .gallery-slide {
        width: 100%;
        padding: 0;
    }

    .gallery-image {
        height: 250px;
    }
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    margin-top: -50px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid var(--tlo-kolor-1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-nav:hover {
    background: var(--tlo-kolor-1);
    transform: translateY(-50%) scale(1.1);
}


.gallery-nav:hover svg {
    stroke: #fff;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    background: var(--tekst-kolor-3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--tekst-kolor-5);
    width: 40px;
    border-radius: 6px;
}

/* ===== CUSTOM LIGHTBOX ===== */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
    stroke: #ffffff;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
    stroke: #ffffff;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-image-container {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    color: #ffffff;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    max-width: 600px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .gallery-slider-wrapper {
        padding: 0 60px 40px;
    }

    .gallery-headline {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .gallery-slider-wrapper {
        padding: 0 50px 30px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-headline {
        font-size: 24px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-slider-wrapper {
        padding: 0 15px 20px;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
    }

    .gallery-dots {
        gap: 8px;
        margin-top: 20px;
    }

    .gallery-dot {
        width: 8px;
        height: 8px;
    }

    .gallery-dot.active {
        width: 24px;
    }

    .lightbox-image-container {
        max-width: 95%;
        max-height: 95%;
    }
}

/*** eof slider galeria s25 ***/


/*** slider opinie s26 **/
#s26 h2 {
  color: var(--tekst-kolor-1);
}

.testimonials-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 15px;
}

.testimonials-headline {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 30px 0;
}

.testimonials-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 18px;
    line-height: 1.6;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px 60px;
    width: 100%;
}

.testimonials-slider {
    overflow: hidden;
}

.testimonials-slides-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex-shrink: 0;
    padding: 0 15px;
}

/* Desktop - 3 slides visible */
@media (min-width: 769px) {
    .testimonial-slide {
        width: calc(100% / 3);
    }
}

/* Mobile - 1 slide visible */
@media (max-width: 768px) {
    .testimonial-slide {
        width: 100%;
        padding: 0;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-slide:nth-child(even) .testimonial-card {
    background: rgba(255, 255, 255, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 60px;
    font-weight: 700;
    color: var(--tlo-kolor-1);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--tekst-kolor-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--tlo-kolor-1);
    flex-shrink: 0;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.testimonial-position {
    font-size: 14px;
    opacity: 0.7;
}

.testimonial-content {
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-content p {
    margin: 0 0 10px 0;
}

.testimonial-content p:last-child {
    margin: 0;
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    margin-top: -50px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-nav:hover {
    background: var(--tlo-kolor-1);
    border-color: var(--tlo-kolor-1);
    transform: translateY(-50%) scale(1.1);
}

.testimonials-nav:hover svg {
    stroke: #ffffff;
}

.testimonials-prev {
    left: 15px;
}

.testimonials-next {
    right: 15px;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background:  rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--tekst-kolor-1);
    width: 30px;
    border-radius: 6px;
}

.testimonials-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.testimonials-button {
    display: inline-block;
    background: var(--tlo-kolor-1);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.testimonials-button:hover {
    background: var(--tlo-kolor-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .testimonials-headline {
        font-size: 28px;
    }

    .testimonials-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .testimonials-slider-wrapper {
        padding: 0 60px 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        padding: 0 50px 30px;
    }

    .testimonials-headline {
        font-size: 24px;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .testimonial-info {
        text-align: center;
    }

    .testimonial-card {
        padding: 25px;
        margin: 10px 0;
    }

    .testimonials-nav {
        width: 40px;
        height: 40px;
    }

    .testimonials-prev {
        left: 10px;
    }

    .testimonials-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider-wrapper {
        padding: 0 15px 20px;
    }

    .testimonial-card::before {
        font-size: 50px;
        top: -5px;
        left: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonials-dots {
        gap: 8px;
        margin-top: 30px;
    }

    .testimonial-dot {
        width: 8px;
        height: 8px;
    }

    .testimonial-dot.active {
        width: 20px;
    }
}

/** eof slider opinie s26 **/


 /*** faq s27 **/


 .s27-accordion-wrapper {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* ===== JEDNA KOLUMNA ===== */
 .s27-accordion-wrapper.single-column {
   width: 100%;
   max-width: 950px;
 }

 .s27-accordion-wrapper.single-column .s27-accordion {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 /* ===== DWIE KOLUMNY ===== */
  .s27-accordion-wrapper.two-columns {
    width: 100%;
  }
 .s27-accordion-wrapper.two-columns .s27-columns {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;

 }

 .s27-column .s27-accordion {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 /* ===== ACCORDION ITEMS ===== */
 .s27-accordion-item {
     border-radius: 8px;
     overflow: hidden;
     transition: border-color 0.3s ease;
 }

 .s27-accordion-item:hover {
     border-color: var(--tekst-kolor-2);
 }

 .s27-accordion-item.active {
     border-color: var(--tekst-kolor-1);
 }

 .s27-accordion-header {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 20px 25px;
     background: var(--tlo-kolor-3);
     border: none;
     cursor: pointer;
     text-align: left;
     transition: background-color 0.3s ease;
 }

 .s27-accordion-header:hover {
     background-color: #f9f9f9;
 }

 .s27-accordion-title h4 {
     margin: 0;
     font-size: 18px;
     font-weight: 600;
 }

 .s27-accordion-icon {
     flex-shrink: 0;
     width: 24px;
     height: 24px;
     position: relative;
     margin-left: 20px;
 }

 .s27-accordion-icon svg {
     position: absolute;
     top: 0;
     left: 0;
     transition: opacity 0.4s ease, transform 0.4s ease;
 }

 .s27-icon-down {
     opacity: 1;
     transform: rotate(0deg);
 }

 .s27-icon-up {
     opacity: 0;
     transform: rotate(-90deg);
 }

 .s27-accordion-item.active .s27-icon-down {
     opacity: 0;
     transform: rotate(90deg);
 }

 .s27-accordion-item.active .s27-icon-up {
     opacity: 1;
     transform: rotate(0deg);
 }

 .s27-accordion-body {
     height: 0;
     text-align: left;
     overflow: hidden;
     transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .s27-accordion-content {
     padding: 25px;
     line-height: 1.6;
 }

 .s27-accordion-content p {
     margin: 0 0 15px 0;
 }

 .s27-accordion-content p:last-child {
     margin-bottom: 0;
 }

 .s27-button-wrapper {
     text-align: center;
     margin: 50px auto 0px auto;
 }

 .s27-headline {
     margin-bottom: 40px;
 }

.s27-tagline {
  margin: 0px auto;
}

 /* ===== RESPONSIVE ===== */
 @media (max-width: 991px) {
     .s27-accordion-wrapper.two-columns .s27-columns {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .s27-headline {
         font-size: 28px;
         margin-bottom: 40px;
     }
 }

 @media (max-width: 768px) {
     .s27-accordion-header {
         padding: 15px 20px;
     }

     .s27-accordion-title h4 {
         font-size: 16px;
     }

     .s27-accordion-content {
         padding: 20px;
         font-size: 14px;
     }

     .s27-headline {
         font-size: 24px;
     }
 }

 /** eof faq s27 **/



/** s1 row **/

/* Desktop - wszystkie divy obok siebie */
#s1_row {
  width: 100%;
  text-align: left;
  flex-direction: row;
  display: flex;
  gap: 40px;
  margin-top: 20px;
  align-items: center;
  position: relative;
  z-index: 9;
  padding-bottom: 0px;
}

#s1_row .tagline {
  text-align: left;
}

@media (max-width: 991px) {
#s1_row {
        flex-direction: column;
        display: flex;
    }
}

#s1_row .s1_row_col_1 {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 1200px) {
#s1_row .s1_row_col_1 {
        width: 40%;
    }
}

@media (max-width: 991px) {
#s1_row .s1_row_col_1 {
        width: 100%;
        padding-top: 40px;
    }
}

#s1_row .s1_row_col_2 {
  width: 100%;
  text-align: left;
  align-items: flex-start;
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: flex-end
}


@media (max-width: 1200px) {
#s1_row .s1_row_col_2 {
        width: 60%;
    }
}

@media (max-width: 991px) {
#s1_row .s1_row_col_2 {
        text-align: left;
        align-items: center;
        width: 100%;
    }
#div_block-479-459 {
        margin: 0px auto;
      }
}
/** eof s1 row **/



#grafika-formularza {
  max-width: 360px;
  position: absolute;
    top: 0px;
    left: 430px;
    z-index: 1;
}

@media (max-width: 1200px) {
#grafika-formularza {
        left: 430px;
    }
}

@media (max-width: 991px) {
#grafika-formularza {
        display: none;
    }
}

/*** foooter ***/

#section-16-459 a {
  color: var(--tekst-kolor-1);
  text-decoration: underline;
}


#section-16-459 a:hover {
  text-decoration: none;
}

/*** eof footer ***/



/** global **/

 @media (max-width: 768px) {
.row-invert {
  flex-direction: column-reverse !important;
}
 }
/** **/








/* ======================
   SEKCJA CENNIK
   ====================== */

#s-cennik {
    padding: 80px 0;
    background: var(--tlo-kolor-3);
    color: var(--tekst-kolor-3);
}

/* Nagłówek sekcji */
.cennik-naglowek {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 60px 0;
}

/* Wrapper pakietów */
.cennik-pakiety-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
    justify-content: center;
}

/* Pojedynczy pakiet */
.cennik-pakiet {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 400px;
    background: #fff;
    border: 2px solid var(--tlo-kolor-1);
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cennik-pakiet:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Tagline pakietu */
.pakiet-tagline {
  background: var(--tlo-kolor-1);
  color: var(--tekst-kolor-1);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: -55px;
}

/* Nazwa pakietu */
.pakiet-nazwa {
    font-family: var(--font-naglowkow);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--kolor-naglowkow);
    margin: 0 0 25px 0;
}

/* Zawartość pakietu */
.pakiet-zawartosc {
    font-family: var(--font-tekstu);
    font-size: 16px;
    line-height: 1.6;
    color: var(--kolor-tekstu);
    margin-bottom: auto;
    padding-bottom: 30px;
}

.pakiet-zawartosc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pakiet-zawartosc li {
    padding: 8px 0 8px 28px;
    position: relative;
}

.pakiet-zawartosc li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--kolor-akcentu);
    font-weight: 700;
    font-size: 18px;
}

/* Cena pakietu */
.pakiet-cena {
    font-family: var(--font-naglowkow);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--kolor-akcentu);
    margin: 20px 0 10px 0;
}

/* Dopisek pod ceną */
.pakiet-dopisek {
    font-family: var(--font-tekstu);
    font-size: 14px;
    line-height: 1.4;
    color: var(--kolor-tekstu);
    opacity: 0.8;
}

/* Wrapper przycisku CTA */
.cennik-przycisk-wrapper {
    text-align: center;
    margin: 0px auto;
}

/* ======================
   RESPONSYWNOŚĆ TABLET
   ====================== */
@media (max-width: 1199px) {
    #s-cennik {
        padding: 60px 0;
    }

    .cennik-naglowek {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .cennik-pakiet {
        flex: 0 1 calc(50% - 15px);
        max-width: 100%;
    }

    .pakiet-nazwa {
        font-size: 28px;
    }

    .pakiet-cena {
        font-size: 40px;
    }
}

/* ======================
   RESPONSYWNOŚĆ MOBILE
   ====================== */
@media (max-width: 767px) {
    #s-cennik {
        padding: 40px 0;
    }

    .cennik-naglowek {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .cennik-pakiety-wrapper {
        gap: 20px;
        margin-bottom: 40px;
    }

    .cennik-pakiet {
        flex: 0 1 100%;
        padding: 30px 20px;
    }

    .pakiet-nazwa {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .pakiet-zawartosc {
        font-size: 15px;
        padding-bottom: 20px;
    }

    .pakiet-cena {
        font-size: 36px;
    }
}
