/* APPIFY: CSS  */

/*  -------------------------- Plan -------------------------

        - General
        - Loader
        - Main menu
        - Sticky menu
        - Mobile menu
        - Modal
        - Slider
        - Work
        - Features
        - CTA
        - App screens
        - Testimonial
        - Pricing
        - Faq
        - Contact
        - Footer

------------------------------------------------------------ */

/* ----------------------------------------------------------
General
------------------------------------------------------------ */

    html, 
    body {
        max-width:100%;
        overflow-x: hidden;
    }
    
    .section {
        padding: 65px 0;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        will-change: opacity, transform;
    }
    
    /* Wyłącz animację fade-in dla stron z treścią (regulamin, polityka, warunki) */
    .section.content-page {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .py-3 {
        width: 60%;
        margin: 0;
    }

    .fs-16 {
        font-size: 16px;
    }

    .btn.btn-gradient-primary {
        background: linear-gradient(90deg, #1f61eb 0, #94b4f5);
        border: none;
        box-shadow: 0 5px 20px rgba(52, 58, 64, .1);
        color: #fff;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn.btn-gradient-primary:hover {
        background: linear-gradient(90deg, #1a52d4 0, #7ba0f0);
        box-shadow: 0 8px 25px rgba(52, 58, 64, .2);
        transform: translateY(-2px);
    }

    .form-control:focus,
    .btn:focus {
        border-color: #ccc; /* Personnaliser la couleur de la bordure au focus */
        box-shadow: none; /* Enlever l'ombre portÃ©e au focus */
    }

    @media (min-width: 992px) {
        .offset {
            margin-right: 8.33333333%;
        }
    }

    .ms-4 {
        margin-left: 1.5rem !important;
    }

    .ms-3 {
        margin-left: 1rem !important;
    }

    .form-control {
        border-color: #e9ecf1;
    }

    .subtitle {
        font-weight: 300;
        text-transform: uppercase;
    }

    .subtitle span {
        font-weight: 600;
    }

    .btn:not(:disabled):not(.disabled) {
        text-decoration: none;
    }

    .me-1 {
        margin-right: .25rem !important;
    }

    .shadow {
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    }

    .available img {
        height: 52px;
        width: auto;
    }

    .btn.btn-gradient-danger {
        background: linear-gradient(90deg, #eb1f52 0, #f594ac);
        border: none;
        box-shadow: 0 5px 20px rgba(52, 58, 64, .1);
        color: #fff;
        font-size: 18px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn.btn-gradient-danger:hover {
        background: linear-gradient(90deg, #d41a47 0, #f0809e);
        box-shadow: 0 8px 25px rgba(52, 58, 64, .2);
        transform: translateY(-2px);
    }

    .btn.btn-gradient-danger i {
        font-size: 11px;
    }

    .text-lg-start {
        text-align: left !important;
    }

    .text-md-end {
        text-align: right;
    }

    .form-group {
        margin-bottom: 0.5rem;
    }

    /* Add the "fade-in-up" class when a section becomes visible */
    .section.fade-in-up {
        opacity: 1; 
        transform: translateY(0);
    }

    /* Animation for the text (titles and paragraphs) inside the sections */
    .section h2, 
    .section p,
    .section .card {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .section.fade-in-up h2,
    .section.fade-in-up p,
    .section.fade-in-up .card {
        opacity: 1;
        transform: translateY(0);
    }

    /* Add a slight delay for h2 and p elements for a more gradual animation */
    .section.fade-in-up h2 {
        transition-delay: 0.2s;
    }

    .section.fade-in-up p {
        transition-delay: 0.4s;
    }

    .section.fade-in-up .card:nth-child(1) {
        transition-delay: 0.2s;
    }

    .section.fade-in-up .card:nth-child(2) {
        transition-delay: 0.4s;
    }

    .section.fade-in-up .card:nth-child(3) {
        transition-delay: 0.6s;
    }

    .section.fade-in-up .card:nth-child(4) {
        transition-delay: 0.8s;
    }

    .section.fade-in-up .card:nth-child(5) {
        transition-delay: 1s;
    }

    .section.fade-in-up .card:nth-child(6) {
        transition-delay: 1.2s;
    }

/* -------------------------------------------------------
Loader 
--------------------------------------------------------- */

/* Loader container */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eaeaea;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

/* Spinner animation */
.spinner {
  border: 8px solid rgba(255, 255, 255, 0.3);
  border-top: 8px solid #1f61eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.5s linear infinite;
}

/* Spinner animation keyframes */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hide loader after loading is complete */
.loader.hide {
  opacity: 0;
  pointer-events: none;
}

/* ------------------------------------------------------
Main menu 
-------------------------------------------------------- */
   
    header {
        height: 0;
    }

    .navbar {
        z-index: 5;
        background-color: transparent !important;
        transition: all 0.3s ease !important;
        height: 67px;
    }

    /* Menu widoczne od razu na podstronach (bez slidera) */
    body:not(:has(.slider)) .navbar,
    body:not(:has(.background-section)) .navbar {
        background-color: #fff !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    body:not(:has(.slider)) .navbar .navbar-brand,
    body:not(:has(.background-section)) .navbar .navbar-brand {
        color: #333 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body:not(:has(.slider)) .navbar .navbar-brand:focus,
    body:not(:has(.slider)) .navbar .navbar-brand:active,
    body:not(:has(.slider)) .navbar .navbar-brand:hover,
    body:not(:has(.background-section)) .navbar .navbar-brand:focus,
    body:not(:has(.background-section)) .navbar .navbar-brand:active,
    body:not(:has(.background-section)) .navbar .navbar-brand:hover {
        color: #333 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body:not(:has(.slider)) .navbar .nav-link,
    body:not(:has(.background-section)) .navbar .nav-link {
        color: #333 !important;
    }

    body:not(:has(.slider)) .navbar .nav-btn,
    body:not(:has(.background-section)) .navbar .nav-btn {
        background-color: #fff !important;
        border-color: #333 !important;
        color: #333 !important;
    }

    .navbar-light .navbar-brand {
        font-family: 'fontAwesome';
    }

    .navbar-light .navbar-brand.act,
    .navbar-light .navbar-brand,
    .navbar-light .navbar-brand:hover,
    .navbar-light .navbar-brand:focus,
    .navbar-light .navbar-brand:active,
    .navbar-light .navbar-nav .nav-link,
    .dropdown-item:hover,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar .nav-btn {
        color: #fff;
    }

    /* Logo zawsze widoczne */
    .navbar-brand {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .navbar-brand:focus,
    .navbar-brand:active,
    .navbar-brand:hover {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-menu {
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s, transform 0.3s;
    }

    .dropdown-menu.show {
        opacity: 1;
    }

    .dropdown-item:hover {
        background-color: #007bff;
    }

    .navbar-nav .nav-link.active {
        position: relative;
        color:#fff !important;
    }

    .navbar-nav .nav-link.active:after {
       border-radius: 10px;
       bottom: -2px;
       content: "";
       left: 16px;
       position: absolute;
       right: 16px;
       border-bottom: 2px solid #fff;
    }

    .navbar .nav-btn {
        background-color: transparent;
        border: 1px solid #fafafa;
    }

    /* Ulepszone przyciski Login i Sign Up */
    .navbar .login-link {
        padding: 8px 16px !important;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .navbar .login-link:hover {
        background-color: hsla(0, 0%, 100%, .1);
        color: #fff !important;
    }

    .navbar .btn-signup {
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, .3) !important;
        color: #fff !important;
        padding: 8px 20px !important;
        border-radius: 6px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .navbar .btn-signup:hover {
        background: rgba(255, 255, 255, .1) !important;
        border-color: rgba(255, 255, 255, .5) !important;
        color: #fff !important;
    }

    /* Sticky menu - przyciski */
    .sticky .login-link {
        color: #333 !important;
    }

    .sticky .login-link:hover {
        background-color: rgba(0, 0, 0, .05);
        color: #1f61eb !important;
    }

    .sticky .btn-signup {
        background: transparent !important;
        border: 1px solid rgba(0, 0, 0, .2) !important;
        color: #333 !important;
    }

    .sticky .btn-signup:hover {
        background: rgba(0, 0, 0, .05) !important;
        border-color: rgba(0, 0, 0, .3) !important;
        color: #333 !important;
    }

/* ----------------------------------------------------
Sticky
------------------------------------------------------ */

    .sticky {
        background-color: #fff !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        width: 100%;
        z-index: 9;
        height:56px !important;
        position: fixed;
        opacity: 1;     
    }

    .sticky .navbar-brand {
        color: inherit !important;
    }

    .sticky .nav-link {
        color: inherit !important;
    }

    .sticky .nav-link.active {
        color: #1f61eb !important;
    }

    .sticky .nav-link.active:after {
        border-bottom: 2px solid #1f61eb;
    }

    .sticky .dropdown .nav-link {
      color: #000 !important;
    }

    .sticky .nav-btn {
        background-color: #fff;
    }

/* ---------------------------------------------------------
Mobile menu
----------------------------------------------------------- */

    .navbar-light .navbar-toggler {
        outline: none;
        background-color: #fff;
        border:none;
    }

    .dropdown .nav-link {
        color: #fff !important;
    }

    @media screen and (max-width: 992px) {
        .dropdown .nav-link:hover {
            color: #fff !important;
        }

        .navbar-nav .dropdown-menu {
        text-align: center;
        padding:0;
        }

        .dropdown-item:hover {
            background-color: #aaa;
        }

        .dropdown .nav-link {
            color:inherit !important;
        }

        .navbar-collapse {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #ddd;
            height: 0;
            overflow: hidden;
            transition: height 0.3s ease;
            flex-direction: column;
        }

        .navbar-collapse.show {
            overflow-y: auto;
            height: 100%;
        }

        .navbar-collapse .navbar-nav:nth-child(1) {
            margin-top: 60px;
        }

        .navbar-collapse .navbar-nav .nav-link {
            color:inherit;
            text-align: center;
            padding: 15px 0;
            width: 100%;
        }

        .navbar-collapse .navbar-nav .nav-link:focus {
            color: #000;
        }

        .navbar-collapse .navbar-nav .nav-link:after {
            border:none !important;
        }

        .navbar-collapse .navbar-nav .nav-link.active {
             background-color: #1f61eb;
        }

        .navbar-collapse .navbar-nav .nav-link:hover {
            background-color: #1f61eb;
            color:#fff;
        }

        .navbar-toggler {
            display: block;
            z-index:997;
        }

        .navbar .nav-btn {
            background-color: inherit;
            border: none;
            color: inherit !important;
        }

        .sticky .navbar-collapse .nav-link {
            color: #000 !important;
        }

        .sticky .navbar-collapse .nav-link:hover {
            color: #fff !important;
        }

        .sticky .navbar-collapse .nav-link.active {
            color: #fff !important;
        }

    }

    @media screen and (min-width: 993px) {
        .navbar-collapse {
            display: flex;
        }
    }

    @media screen and (min-width:993px) {
        nav:not(.sticky) .nav-link:focus {
            color: #fff !important;
        }    
    }

/* ----------------------------------------------------- 
Modal
------------------------------------------------------- */

    .modal .close {
        display: none;
    }

    .modal-header {
        display: block;
        text-align: center;
    }

    .modal-footer p {
        width:100%;
    }

/* ------------------------------------------------------
Slider 
--------------------------------------------------------- */

    .background-section {
      width: 100%;
      height: 100%;
      background-image: url('../img/mode2.png');
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }


    .background-section .overlay::before {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 731px;
    height: 155px;
      background: #fff;
      z-index: 2;
    }

    .background-section::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 218px;
      background: #fff;
      transform: skewY(-12deg);
      z-index: 2;
      clip-path: polygon(0 100%, 100% 100%, 300% 100%, 0 0);
    }

    .section.slider {
        background-color: #eee;
    }

    .sl {
        position: relative;
        top:40px;
        z-index: 5;
    }

    .moving-image {
        position: relative;
        animation: moveImage 10s linear infinite;
    }

    @keyframes moveImage {
        0% {
            transform: translateX(0) translateY(0);
        }
        50% {
            transform: translateX(6%) translateY(0%);
        }
        100% {
            transform: translateX(0) translateY(0);
        }
    }

    .slider .hero-content {
        z-index: 9;
    }

    .hero-content, .subscribe-form {
        position: relative;
        display: flex;
        align-items: center;
    }

    .subscribe-form .form-control {
        background-color: hsla(0, 0%, 100%, .04);
        border-color: transparent;
        border-radius: 4px;
        color: #fff;
        min-height: 62px;
        padding: 8px 180px 8px 50px;
        position: relative;
    }

    .subscribe-form .form-btn, 
    .subscribe-form .form-icon {
        position: absolute;
    }

    .subscribe-form .form-icon {
        color: #fff;
        font-size: 20px;
        left: 16px;
        opacity: .3;
    }

    .subscribe-form i {
       position: absolute;
       left: 8px;
       color: #6c6f71;
    }

    .subscribe-form .form-btn {
        right: 8px;
    }

    .btn.btn-success {
        background-color: #1ce1ac !important;
        border: 1px solid #1ce1ac !important;
        color: #fff !important;
    }

    .btn.btn-teal {
        background-color: #1ce1ac !important;
        border: 1px solid #1ce1ac !important;
        color: #fff !important;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn.btn-teal:hover {
        background-color: #18d19f !important;
        border-color: #18d19f !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(28, 225, 172, .4);
    }

    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
    }

/* --------------------------------------------------
work
----------------------------------------------------- */

    .work-icon {
        width: 90px;
        height: 90px;
        margin: 6px auto 6px;
        border-radius: 100%;
        line-height: 60px;
        position: relative;
        background-color: #1f61eb;
        color: #fff;
        opacity: 0.8;
    }

    .work-icon i {
        margin-top: 25px;
        -webkit-box-reflect: below 1px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(.6, transparent), to(rgba(0, 0, 0, 0.5)));
    }

    .work-box .work-arrow {
        position: absolute;
        right: -56px;
        top: 45%;
        width: 30%;
    }

    @media (max-width: 991.98px) {
        .work-box .work-arrow {
            display: none;
        }
    }

/* --------------------------------------------------------
Features
----------------------------------------------------------- */

    .section.features {
        background-color: #fafafa;
    }

    .avatar {
        width: 60px;
        height: 60px;
        align-items: center;
        display: flex;
        justify-content: center;
        background-color: #fff;
        box-shadow: 0 5px 14px rgba(31, 97, 235, .08);
        color: #1f61eb;
        border-radius: 100%;
    }

    .avatar i {
        font-size: 1.5rem !important;  /* Znacznie większe ikony */
    }

/* ---------------------------------------------------------
Stats & Features Section
------------------------------------------------------------ */

    .stats-features {
        background-color: #fafafa;
    }

    .stats-features .row {
        align-items: flex-start;
    }

    .stats-features .row.g-4 > [class*="col-"] {
        padding-left: 20px;
        padding-right: 20px;
    }

    .stat-box {
        background: linear-gradient(135deg, #1f61eb 0%, #5a8dee 50%, #94b4f5 100%);
        border-radius: 16px;
        padding: 35px 25px;
        text-align: center;
        color: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 15px rgba(31, 97, 235, .2);
    }

    .stats-features .row.g-4 > [class*="col-6"] {
        display: flex;
    }

    .stats-features .row.g-4 > [class*="col-6"] > .stat-box {
        width: 100%;
    }

    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(31, 97, 235, .35);
    }

    .stat-number {
        font-size: 40px;
        font-weight: 700;
        margin: 0 0 12px 0;
        line-height: 1;
        color: #fff;
    }

    .stat-label {
        font-size: 13px;
        font-weight: 500;
        margin: 0;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        line-height: 1.4;
    }

    /* Nowoczesny design stat-boxów */
    .stat-box-modern {
        background-color: #fff;
        border: none;
        border-radius: 12px;
        padding: 30px 25px;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        min-height: 120px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stat-box-modern:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
        transform: translateY(-2px);
    }

    .stat-content-modern {
        width: 100%;
    }

    .stat-number-modern {
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 6px 0;
        line-height: 1;
        color: #17a085;
    }

    .stat-label-modern {
        font-size: 14px;
        font-weight: 500;
        margin: 0;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }

    .stats-features .row.g-4 > [class*="col-6"] > .stat-box-modern {
        width: 100%;
    }

    .feature-item-extended {
        display: flex;
        gap: 24px;
        padding: 30px;
        background-color: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
        transition: all 0.3s ease;
    }

    .feature-item-extended:hover {
        box-shadow: 0 5px 20px rgba(31, 97, 235, .15);
        transform: translateY(-2px);
    }

    .feature-icon-extended {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #20c997 0%, #17a085 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        flex-shrink: 0;
    }

    .feature-content-extended {
        flex: 1;
    }

    .feature-title-extended {
        font-size: 20px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

    @media (max-width: 991px) {
        .stat-number {
            font-size: 36px;
        }

        .stat-box {
            min-height: 120px;
            padding: 25px 15px;
        }

        .feature-item-extended {
            padding: 20px;
        }

        .feature-icon-extended {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
    }

    /* Subtelny przycisk w sekcji features-bg */
    .btn-features-subtle {
        background-color: transparent;
        border: 1.5px solid #1f61eb;
        color: #1f61eb;
        padding: 12px 28px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-features-subtle:hover {
        background-color: #1f61eb;
        color: #fff;
        border-color: #1f61eb;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(31, 97, 235, .2);
    }

    .btn-features-subtle i {
        transition: transform 0.3s ease;
    }

    .btn-features-subtle:hover i {
        transform: translateX(4px);
    }

/* ---------------------------------------------------------
Cta
------------------------------------------------------------ */

    .cta {
        background-color: #000;
        padding: 90px 0;
    }

    #counter i {
        font-size: 2rem;
        color: #fff;
    }

    .counter-content {
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
        background-color: hsla(0, 0%, 100%, .1);
        border: 1px solid hsla(0, 0%, 100%, .2);
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(52, 58, 64, .1);
        padding: 20px;
        height: 100%;
        min-height: 120px;
    }

    #counter .col-lg-3,
    #counter .col-sm-6 {
        display: flex;
    }

    #counter .col-lg-3 > div,
    #counter .col-sm-6 > div {
        width: 100%;
        display: flex;
    }

    #counter .col-lg-3 > div > div,
    #counter .col-sm-6 > div > div {
        width: 100%;
    }

/* ----------------------------------------------------------
App screens
------------------------------------------------------------- */

.screen-slider .slick-slide {
    margin: 0 -20px;  /* Bardzo duży ujemny margin - obrazy maksymalnie blisko */
    padding: 0;  /* Brak paddingu */
    text-align: center;
}

.screen-slider .slick-list {
    margin: 0 -10px;  /* Ujemny margin na kontenerze */
}

.screen-slider {
    text-align: center;
}

.screen-slider img {
    width: 100%;
    max-width: 280px;  /* Zwiększona szerokość, żeby wypełnić przestrzeń */
    height: auto;
    transition: transform 0.3s ease;
    transform-origin: bottom;
    margin: 0;
    display: block;
    cursor: pointer;
}

/* Style for the active image (centered) */
.screen-slider .slick-center img {
    transform: scale(1.05);  /* Slightly enlarge the active image */
    transition: transform 0.3s ease;  /* Slightly enlarge the active image with a smooth transition */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);  /* Add a shadow around the active image */
}

/* Optional: Style for non-active images */
.screen-slider .slick-slide img {
    opacity: 0.3;  /* Make the other images less visible */
    cursor: pointer;
}

.screen-slider .slick-slide img:hover {
    opacity: 0.5;
}

.screen-slider .slick-slide.slick-center img {
    opacity: 1;  /* Ensure the central image has full opacity */
}

/* -------------------------------------------------------------
Testimonial
-------------------------------------------------------------- */

    .testimonial {
        background-color: #fafafa;
    }

    .testimonial-slider {
      width: 80%;
      max-width: 800px;
      margin: 0 auto;  /* Wyśrodkowanie */
    }

    .testimonial-item {
      padding: 30px 20px;
      text-align: center;
      background: transparent;
      border: 1px solid transparent;
      border-radius: 8px;
      max-width: 100%;
      margin: 0 auto;
    }

    .testimonial-image {
        width:100%;
        display: flex;
        justify-content: center;
        border-radius: 50%;
        position: relative;
    }

    .testimonial-image img {
      width: 90px !important;
      height: 90px !important;
      border-radius: 50%;
      margin-bottom: 15px;
      object-fit: cover;
    }

    .testimonial-item p {
      font-size: 18px;
      font-style: italic;
    }

    .testimonial-item h4 {
      font-size: 22px;
      margin-top: 10px;
      color: #333;
    }

    .testimonial-item p:last-child {
      font-size: 16px;
      color: #777;
      font-weight: bold;
    }

    /* Strzałki w sekcji testimonials */
    .testimonial-slider .slick-prev,
    .testimonial-slider .slick-next {
        width: 50px;
        height: 50px;
        z-index: 10;
        background-color: transparent;
        border: 1px solid #dee2e6;
        border-radius: 50%;
        color: #6c757d;
        transition: all 0.3s ease;
        box-shadow: none;
    }

    .testimonial-slider .slick-prev {
        left: -60px;
    }

    .testimonial-slider .slick-next {
        right: -60px;
    }

    .testimonial-slider .slick-prev:hover,
    .testimonial-slider .slick-next:hover {
        background-color: #f8f9fa;
        border-color: #adb5bd;
        color: #1a1a1a;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    }

    .testimonial-slider .slick-prev:before,
    .testimonial-slider .slick-next:before {
        display: none;
    }

    .testimonial-slider .slick-prev i,
    .testimonial-slider .slick-next i {
        font-size: 18px;
    }

    @media (max-width: 768px) {
        /* Ukryj strzałki na mobile - są wyłączone w JS */
        .testimonial-slider .slick-prev,
        .testimonial-slider .slick-next {
            display: none !important;
        }
    }

/*--------------------------------------------------------
Pricing
----------------------------------------------------------*/

    .pricing-box {
        background-color: #fff;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(52, 58, 64, .08);
        overflow: hidden;
        padding: 23px;
        position: relative;
    }

    /* Minimalistyczna sekcja cennika */
    .pricing-simple {
        background-color: transparent;
        border-radius: 0;
        padding: 40px 0;
        box-shadow: none;
    }

    .pricing-simple .row.g-4 {
        margin-left: 0;
        margin-right: 0;
    }

    .pricing-simple .row.g-4 > [class*="col-"] {
        padding-left: 12px;
        padding-right: 12px;
    }

    .price-display {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .price-from {
        font-size: 18px;
        color: #6c757d;
        font-weight: 400;
    }

    .price-value {
        font-size: 64px;
        font-weight: 700;
        color: #1f61eb;
        line-height: 1;
    }

    .price-per {
        font-size: 20px;
        color: #6c757d;
        font-weight: 400;
    }

    .pricing-benefit {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 24px;
        background-color: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
        height: 100%;
        min-height: 100px;
    }

    .pricing-benefit:hover {
        background-color: #f0f4ff;
        transform: translateY(-2px);
    }

    .pricing-benefit i {
        color: #1f61eb;
        font-size: 22px;
        margin-top: 0;
        flex-shrink: 0;
        width: 24px;
        text-align: center;
    }

    .pricing-benefit > div {
        flex: 1;
        min-width: 0;
    }

    .pricing-benefit strong {
        display: block;
        color: #1a1a1a;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .pricing-benefit p {
        line-height: 1.5;
    }

    .btn-pricing-cta {
        background-color: #1f61eb;
        color: #fff;
        border: none;
        padding: 14px 40px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 4px 12px rgba(31, 97, 235, .25);
    }

    .btn-pricing-cta:hover {
        background-color: #1a52d4;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(31, 97, 235, .35);
    }

    @media (max-width: 991px) {
        .pricing-simple {
            padding: 40px 30px;
        }

        .price-value {
            font-size: 48px;
        }
    }

    .pricing-tab {
        justify-content: center;
        background-color: #eff1f5;
        border: 1px solid #e6e9ef;
        border-radius: 50rem;
        display: table;
        margin: 0;
        padding: 6px;
    }

    .nav.pricing-tab .nav-item {
        display: inline-block;
    }

    .nav.pricing-tab .nav-item .nav-link {
        border-radius: 50rem;
        color: #292e49;
        padding: .5rem 1.5rem;
    }

    .nav.pricing-tab .nav-item .nav-link.active {
        background-color: #1f61eb;
        color: #fff;
    }

    .pricing-box i {
        font-size:0.65rem;
    }

    .pricing-box .pricing-badge {
        background-color: #eb1f52;
        box-shadow: 0 2px 8px rgba(16, 22, 30, .3);
        color: #fff;
        font-size: 13px;
        padding: 2px 40px;
        position: absolute;
        right: -40px;
        text-transform: uppercase;
        top: 40px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .tab-content {
        perspective: 1200px;
    }

    .tab-pane {
      display: none;
      opacity: 0;
      transform: rotateY(90deg);
      transform-origin: center center;
      transition: transform 0.8s ease, opacity 0.8s ease;
    }

    .tab-pane.show {
      display: block;
      opacity: 1;
      transform: rotateY(0deg);
    }

    .tab-pane.custom-fade-enter {
      opacity: 0;
      transform: rotateY(90deg);
    }

    .tab-pane.custom-fade-enter-active {
      opacity: 1;
      transform: rotateY(0deg);
      transition: transform 0.8s ease, opacity 0.8s ease;
    }

    .tab-pane.custom-fade-leave {
      opacity: 1;
      transform: rotateY(0deg);
    }

    .tab-pane.custom-fade-leave-active {
      opacity: 0;
      transform: rotateY(-90deg);
      transition: transform 0.8s ease, opacity 0.8s ease;
    }

    .tab-pane {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .tab-pane.show {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

/*-------------------------------------------------------
Faq
--------------------------------------------------------*/
    .section.faq {
      position: relative; 
      background-image: url('../img/mode2.png');
      background-attachment: fixed;
      background-size: cover;
      background-color: #fafafa;
    }

    .card {
        margin-bottom: 10px;
        border: none;
        box-shadow: 0 5px 20px rgba(52, 58, 64, .1);
    }

    .card-header {
        padding: 0;
    }

    .faq .card-header button {
        font-weight: 600 !important;
        font-size: 17px;
        color: #1a1a1a !important;
        padding: .75rem 1.25rem;
        width: 100%;
        text-align: left;
        text-decoration: none !important;
        transition: all 0.3s ease;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq .card-header button .faq-icon {
        font-size: 14px;
        color: #1f61eb;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-left: 10px;
    }

    .faq .card-header button[aria-expanded="true"] .faq-icon {
        transform: rotate(180deg);
    }

    .faq .card-header button:hover,
    .faq .card-header button:focus {
        color: #1f61eb !important;
        text-decoration: none !important;
    }

    .faq .card-header button.collapsed {
        color: #1a1a1a !important;
    }

    .faq .card-body {
        color: #333;
        line-height: 1.7;
    }

    .btn-faq-cta {
        background-color: #1f61eb;
        color: #fff;
        border: none;
        padding: 14px 40px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 4px 12px rgba(31, 97, 235, .3);
    }

    .btn-faq-cta:hover {
        background-color: #1a52d4;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(31, 97, 235, .4);
    }

    @media only screen and (max-width:993px) {
        .img-question {
        text-align:center !important;
     }
    }
    
    @media only screen and (max-width:1024px) {
        .img-question {
            display: none !important;
        }
    }

    .faq img {
       width:80%;
       height:auto; 
    }

/* ------------------------------------------------------
Contact
-------------------------------------------------------- */

.contact i {
    font-size: 8px;
}

.contact-icon {
    align-items: center;
    border-radius: 6px;
    display: flex;
    font-size: 20px;
    height: 36px;
    justify-content: center;
    width: 36px;
    background-color: rgba(31,97,235,.15);
}

.contact-icon i {
    font-size: 1rem !important;
}

.contact {
    background-color: #fafafa;
}

.contact img {
    height: 80px;
}

.contact .text-secondary i {
    color:#000;
}

.contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.notification {
    display: none;
    width: max-content;
    border: 1px solid #eaeaea;
    padding: 20px;
    box-shadow: 10px 5px 10px #eaeaea;
    border-radius: 5px;
    background: #fff;
    margin: 0;
    position: absolute;
}

/* Nowoczesna sekcja kontaktu */
.contact-info-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    height: 100%;
}

.contact-header-modern h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-item-modern {
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.contact-item-modern:last-child {
    border-bottom: none;
}

.contact-label-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    line-height: 1.2;
}

.contact-icon-modern {
    color: #6c757d;
    font-size: 18px !important;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item-modern:hover .contact-icon-modern {
    color: #1a1a1a;
}

.contact-details-modern {
    flex: 1;
}

.contact-label-modern {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-link-modern {
    display: block;
    color: #6c757d;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.contact-link-modern:hover {
    color: #1f61eb;
}

.contact-address-modern {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
}

.contact-form-modern {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.form-group-modern {
    position: relative;
}

.form-label-modern {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-control-modern {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #1a1a1a;
}

.form-control-modern:focus {
    outline: none;
    border-color: #1f61eb;
    box-shadow: 0 0 0 3px rgba(31, 97, 235, .1);
}

.form-control-modern::placeholder {
    color: #adb5bd;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #1f61eb 0%, #94b4f5 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(31, 97, 235, .25);
    width: 100%;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #1a52d4 0%, #7ba0f0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 97, 235, .35);
    color: #fff;
}

@media (max-width: 991px) {
    .contact-info-modern {
        margin-bottom: 30px;
    }
}

/*------------------------------------------------
Footer
-------------------------------------------------*/

.footer {
    padding: 20px 0;
}

.footer .navbar-brand {
    color: #fff;
}

.footer-tagline {
    background: rgba(52,58,64,.9);
}

@media only screen and (max-width:993px) {
    .footer-tagline p,
    .footer-tagline .text-md-end {
        text-align: center !important;
  }
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem;
}

.footer .footer-social-icon {
    align-items: center;
    background-color: hsla(0, 0%, 100%, .1);
    border-radius: 6px;
    box-shadow: 0 0 0 0 hsla(0, 0%, 100%, .1);
    color: #fff;
    display: flex;
    font-size: 20px;
    height: 36px;
    justify-content: center;
    transition: all .3s ease-in-out;
    width: 36px;
    text-decoration: none;
    cursor: pointer;
}

.footer .footer-social-icon:hover {
    background-color: hsla(0, 0%, 100%, .25);
    color: #fff;
}

.footer .footer-nav li .footer-link {
    color: hsla(0, 0%, 100%, .6);
    position: relative;
    transition: all .3s ease-in-out;
}

.footer .footer-nav li {
    padding: 6px 0;
}

/* Responsywność dla stron z treścią (polityka prywatności, regulamin, warunki) */
@media (max-width: 768px) {
    /* Zmniejsz padding na mobile dla sekcji z treścią - uwzględnij wysokość sticky navbar */
    .section[style*="padding-top: 120px"] {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }
    
    /* Upewnij się, że treść jest widoczna */
    .content-area {
        padding-top: 0;
        margin-top: 0;
    }
    
    /* Upewnij się, że sekcja nie jest przesunięta za bardzo */
    main .section {
        margin-top: 0 !important;
    }
    
    /* Zmniejsz rozmiar nagłówków na mobile */
    .section h1 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
        padding-top: 0;
    }
    
    .section h2.h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .section h3 {
        font-size: 1.1rem !important;
    }
    
    .section h4.h5 {
        font-size: 1rem !important;
    }
    
    /* Popraw odstępy między sekcjami */
    .section .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .section .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    /* Popraw padding kontenera */
    .section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Zmniejsz rozmiar tekstu na mobile */
    .section p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .section ul, .section ol {
        padding-left: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .section li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Upewnij się, że kolumny są pełnej szerokości na mobile */
    .col-lg-10.mx-auto {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Popraw widoczność linków */
    .section a {
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .section[style*="padding-top: 120px"] {
        padding-top: 60px !important;
        padding-bottom: 30px !important;
    }
    
    .section h1 {
        font-size: 1.5rem !important;
    }
    
    .section h2.h3 {
        font-size: 1.1rem !important;
    }
    
    .section p {
        font-size: 0.9rem;
    }
    
    .section li {
        font-size: 0.9rem;
    }
}


