/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1320px;
    padding: 0 15px;
    margin: auto;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    background: url('../img/hero.jpg') center center;
    background-size: cover;
    overflow: hidden;
}
.subpage-hero {
    position: relative;
    padding: 60px 0; /* Mniejszy padding na start (mobile) */
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px; /* Bezpieczna minimalna wysokość na telefon */
}
.hero-overlay {
    position: absolute;
	
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,17,43,.90) 0%,
        rgba(0,17,43,.78) 28%,
        rgba(0,17,43,.15) 65%,
        rgba(0,0,0,.10) 100%
    );
}
.subhero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}
.subhero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
}
/* Główny nagłoszek H1 */
.subhero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem; /* Kompaktowy rozmiar na telefony, żeby nie łamał słów */
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.subhero-title .white {
    color: #ffffff;
}

.subhero-title .yellow {
    color: #f2b400; /* Ładny, flisacki odcień żółtego */
}

/* Podtytuł (Naprawa czytelności – odcięcie od ciemnego tła) */
.hero-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
    /* Mocny cień ratuje czytelność na jasnych elementach fali wodnej */
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9), 0 0 4px rgba(0, 0, 0, 0.5);
}
/* Element ozdobny na dole (jeśli używasz efektu pędzla) */
.brush {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

/* ==========================================================================
   MEDIA QUERY - WERSJA NA KOMPUTERY I TABLETY (od 768px szerokości)
   ========================================================================== */
@media (min-width: 768px) {
    .subpage-hero {
        padding: 120px 0; /* Więcej przestrzeni na dużym ekranie */
        min-height: 450px;
    }

    .subhero-title {
        font-size: 3.8rem; /* Duży, drapieżny font na desktopie */
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 750px;
    }
}
.hero-content {
    position: relative;
    z-index: 5;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 70px; /* Wysokość nawigacji, zapobiega overlapowi */
}

.hero-left {
    max-width: 560px;
    margin-top: 50px;
}

.hero-title, 
.hero-left h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 110px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: .88;
    letter-spacing: -3px;
     /* transform: skewX(-8deg); */
    text-shadow: 0 3px 0 rgba(0,0,0,.15);
    color: #fff;
}

.hero-title .yellow,
.hero-left h1 span {
    color: #f2b400;
}

.hero-title .white {
    color: #fff;
}

.hero-left p {
    margin-top: 25px;
    font-size: 32px;
    color: #fff;
    font-weight: 400;
}

/* --- BUTTONS --- */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-yellow, 
.btn-book {
    background: #f2b400;
    color: #00112b;
    padding: 18px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.btn-book {
    padding: 15px 26px;
}

.btn-yellow:hover,
.btn-book:hover {
    background: #e4aa00;
}

.btn-outline {
    border: 2px solid #f2b400;
    padding: 18px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.btn-outline:hover {
    background: rgba(242, 180, 0, 0.1);
}
/* ==========================================================================
   NOWY, RESPONSOWALNY SYSTEM NAWIGACJI (NAVBAR)
   ========================================================================== */

.navbar {
    background: #04142f;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Rezerwacja telefoniczna - wersja Desktop */
.desktop-phone-call {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.desktop-phone-call .call-label {
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desktop-phone-call .call-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    color: #f2b400;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-phone-call .call-number:hover {
    color: #fff;
}

/* Ukrywanie elementów mobilnych na komputerze */
.mobile-phone-cta-btn, .mobile-menu-toggle, .mobile-only-link {
    display: none;
}

/* Główne style menu komputerowego */
.navbar .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.navbar .menu a {
    color: #fff;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.navbar .menu a:hover, .navbar .menu a.active {
    color: #f2b400;
}

/* ==========================================================================
   WIDOK MOBILNY (Wszystkie ekrany poniżej 992px szerokości)
   ========================================================================== */
@media (max-width: 992px) {
    
    .navbar {
        padding: 10px 0;
    }

    /* Ukrywamy elementy desktopowe */
    .desktop-phone-call, .desktop-only-btn {
        display: none !important;
    }

    /* Duży mobilny przycisk "ZAREZERWUJ TELEFONICZNIE" */
    .mobile-phone-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #f2b400;
        color: #222;
        padding: 10px 16px;
        font-family: 'Oswald', sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(242, 180, 0, 0.3);
        transition: transform 0.1s ease;
    }

    .mobile-phone-cta-btn:active {
        transform: scale(0.96);
    }

    /* Duży, klikalny przycisk menu (Hamburger) */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10000;
    }

    .mobile-menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.1, 0.8, 0.3, 1);
    }

    /* Animacja transformacji hamburgera w krzyżyk (X) po otwarciu */
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: #f2b400;
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
        background-color: #f2b400;
    }

    /* Rozwijana kurtyna menu mobilnego */
    .navbar .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: #04142f;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        flex-direction: column;
        padding: 90px 40px 40px 40px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.1, 0.8, 0.3, 1);
        overflow-y: auto;
    }

    .navbar .menu.open {
        right: 0;
    }

    .navbar .menu li {
        width: 100%;
        border-bottom: 1px solid #2a2a2a;
    }

    .navbar .menu a {
        display: block;
        padding: 16px 0;
        font-size: 1.4rem;
        width: 100%;
    }

    .mobile-only-link {
        display: block !important;
    }

    .mobile-only-link a {
        color: #f2b400 !important;
        font-family: 'Oswald', sans-serif !important;
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .navbar .logo img {
        height: 30px; 
        width: auto;
    }
    .mobile-phone-cta-btn {
        font-size: 0.66rem;
        padding: 5px;
		text-align: center;
    }
	.mobile-phone-cta-btn span{
      width:100%;
    }
    .mobile-menu-toggle {
        width: 28px;
        height: 19px;
    }
	
}

.logo img {
    height: 3em;
    display: block;
}

.menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .3s;
}

.menu a:hover,
.menu a.active {
    color: #f2b400;
}

/* ==========================================================================
   DROPDOWN MENU - CSS STYLES
   ========================================================================== */

/* Style dla desktopu (komputery) */
@media (min-width: 993px) {
    .menu li {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #04142f;
        min-width: 180px;
        padding: 10px 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        border-top: 3px solid #f2b400;
        border-radius: 0 0 4px 4px;
        z-index: 100;
    }

    .dropdown-menu li {
        width: 100%;
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 20px;
        display: block;
        color: #fff;
        font-size: 0.9rem;
        text-align: left;
        transition: background 0.2s, color 0.2s;
    }

    .dropdown-menu li a:hover {
        background-color: #222;
        color: #f2b400;
    }

    /* Wyświetlanie menu po najechaniu myszką */
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle i {
        font-size: 0.8rem;
        margin-left: 4px;
        transition: transform 0.2s;
    }
    
    .dropdown:hover .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

/* Style dla wersji mobilnej (telefony/tablety) */
@media (max-width: 992px) {
    .dropdown-menu {
        display: none;
        background: #04142f;
        padding-left: 15px;
        list-style: none;
    }

    .dropdown.active .dropdown-menu {
        display: block; /* Rozwinięcie podmenu na telefonie */
    }

    .dropdown-menu li a {
        padding: 12px 20px;
        font-size: 1rem;
        color: #ccc;
        border-bottom: 1px solid #2a2a2a;
    }
    
    .dropdown-toggle i {
        margin-left: 8px;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
}
.hero-title, 
.hero-left h1 {
    font-size: 70px;

}

/* --- FEATURES --- */
.hero-features {
    display: flex;
    gap: 40px;
    margin-top: 55px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    padding-right: 35px;
    border-right: 1px solid rgba(255,255,255,.2);
}

.feature:last-child {
    border-right: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.feature span {
    font-size: 20px;
    line-height: 1.4;
    opacity: .9;
}

.brush {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url('img/brush-white.png') repeat-x bottom;
    background-size: cover;
    z-index: 10;
}

/* --- ATTRACTIONS --- */
.attractions {
    padding: 90px 0;
    background: #fff;
}

.section-title {
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 800;
    color: #081b36;
    font-family: 'Oswald', sans-serif;
}

.section-title span {
    display: block;
    width: 70px;
    height: 5px;
    background: #f2b400;
    margin-top: 10px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.attractions-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.attraction-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececec;
    transition: .3s;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    position: relative;
    padding: 55px 25px 25px;
}

.card-icon {
    position: absolute;
    top: -28px;
    left: 25px;
    width: 58px;
    height: 58px;
    background: #f2b400;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon img {
    width: 70%;
}

.card-content h3 {
    font-size: 32px;
    color: #081b36;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.card-content p {
    color: #444;
    line-height: 1.5;
    min-height: 60px;
}

.card-content a {
    text-decoration: none;
    color: #081b36;
    font-weight: 700;
    display: inline-flex;
    gap: 8px;
    margin-top: 15px;
}

.card-content a span {
    color: #f2b400;
}

/* --- WHY US --- */
.why-us {
    background: url('img/bg-water.jpg') center center;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,20,55,.82);
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.why-title h2 {
    color: #fff;
    font-size: 48px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 5px;
}

.why-title span {
    display: block;
    width: 65px;
    height: 5px;
    background: #f2b400;
    margin-bottom: 35px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-item {
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.2);
    padding: 10px 20px;
}

.why-item:last-child {
    border: none;
}

.why-item img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 15px;
}

.number {
    font-size: 80px;
    font-weight: 800;
    color: #f2b400;
    line-height: 1;
    font-family: 'Oswald', sans-serif;
}

.number span {
    font-size: 45px;
}

.why-item p {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
}

/* --- DISCOVER PIENINY --- */
.discover-pieniny {
    height: 260px;
    background: url('../img/pieniny-banner.jpg') center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

.discover-pieniny .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,15,45,.70) 0%,
        rgba(0,15,45,.25) 45%,
        rgba(0,15,45,.05) 100%
    );
}

.discover-pieniny .container {
    position: relative;
    z-index: 2;
}

.discover-text span {
    display: block;
    color: #fff;
    font-size: 52px;
    font-family: cursive;
    margin-bottom: 5px;
}

.discover-text h2 {
    color: #f2b400;
    font-size: 65px;
    line-height: 1;
    font-weight: 700;
    font-style: italic;
}

.discover-text .line {
    width: 120px;
    height: 5px;
    background: #f2b400;
    margin-top: 12px;
}

/* --- HOW IT WORKS --- */
.how-it-works {
    padding: 90px 0 70px;
    background: #fff;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    gap: 20px;
}

.step {
    text-align: center;
    width: 100%;
    max-width: 180px;
    position: relative;
}

.step-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #04142f;
    color: #f2b400;
    font-weight: 800;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step img {
    width: 42px;
    margin-bottom: 15px;
}

.step p {
    font-weight: 600;
}

.step-arrow {
    font-size: 40px;
    color: #04142f;
    margin-top: 15px;
    align-self: center;
}

/* --- PACKAGES SECTION --- */
.packages-section {
    padding: 80px 0;
    background: #fff;
}

.section-heading {
    margin-bottom: 35px;
}

.section-heading h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #081b36;
    line-height: 1;
}

.section-heading span {
    display: block;
    width: 70px;
    height: 5px;
    background: #f2b400;
    margin-top: 8px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 3px 15px rgba(0,0,0,.05);
    transition: .3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: #081b36;
    margin: 0;
}

.package-price {
    margin-top: 15px;
    font-size: 78px;
    font-weight: 800;
    line-height: 1;
    color: #081b36;
}

.package-price span {
    font-size: 26px;
    font-weight: 600;
}

.package-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.package-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.package-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 14px;
    border-radius: 20px;
    background: #082754;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.package-badge.gray {
    background: #ececec;
    color: #081b36;
}

.package-list {
    list-style: none;
    margin-top: 28px;
    margin-bottom: 30px;
}

.package-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.package-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #7c8d28;
    font-weight: 800;
}

.family-list {
    margin-top: 40px;
}

.package-btn {
    width: 100%;
    max-width: 240px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: auto;
    background: #f2b400;
    color: #081b36;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 800;
    font-size: 16px;
    transition: .3s;
}

.package-btn:hover {
    background: #e4aa00;
}

.package-btn span {
    font-size: 18px;
}

/* --- GALLERY & ROUTE --- */
.gallery-route {
    padding-bottom: 80px;
}

.three-cols {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-grid img,
.route-box img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    margin-bottom: 15px;
}

.review-card h4 {
    color: #f2b400;
    font-size: 22px;
    margin-bottom: 10px;
}

/* --- CTA FOOTER --- */
.cta-footer {
    background: #04142f;
    padding: 45px 0;
    position: relative;
}

.cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-wrap h2 {
    color: #fff;
    font-size: 60px;
    font-family: 'Oswald', sans-serif;
}

.cta-wrap h2 span {
    color: #f2b400;
}

.phone {
    font-size: 50px;
    font-weight: 800;
    color: #fff;
}

.cta-btn {
    background: #f2b400;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    color: #04142f;
    transition: .3s;
}

.cta-btn:hover {
    background: #e4aa00;
}

/* --- MAIN FOOTER --- */
.footer {
    background: #031733;
    padding: 40px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('img/footer-bg.jpg') center center;
    background-size: cover;
    opacity: .15;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.footer-logo img {
    max-width: 280px;
}

.footer h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 18px;
    font-family: 'Oswald', sans-serif;
}

.links-columns {
    display: flex;
    gap: 50px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer a:hover {
    color: #f2b400;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
}

.footer-contact img {
    width: 18px;
    margin-top: 2px;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 55px;
    height: 55px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: .3s;
}

.socials a:hover {
    background: #f2b400;
    border-color: #f2b400;
    color: #031733;
}

/* --- MEDIA QUERIES (RESPONSIVE DESIGN) --- */

@media (max-width: 1200px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .logo img {
        height: 2.2em;
    }

    .menu {
        display: none; /* Warto dodać potem skrypt JS na burger menu */
    }

    .hero-content {
        min-height: auto;
        padding: 120px 25px 60px;
    }

    .hero-left h1 {
        font-size: 70px;
    }

    .hero-left p {
        font-size: 24px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-item {
        border: none;
    }

    .discover-text span {
        font-size: 34px;
    }

    .discover-text h2 {
        font-size: 45px;
    }

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

    .package-btn {
        width: 100%;
    }

    .three-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .feature {
        border: none;
        padding-right: 0;
    }

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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 15px;
    }

    .why-item {
        padding: 0;
    }

    .why-item img {
        width: 42px;
        height: 42px;
    }

    .number {
        font-size: 72px;
    }

    .number span {
        font-size: 32px;
    }

    .why-item p {
        font-size: 20px;
    }

    .steps {
        display: grid;
        grid-template-columns: 1fr; /* Zmieniono z 3 kolumn na 1 dla wygody na małych ekranach */
        gap: 30px;
        justify-items: center;
    }

    .step {
        max-width: 280px;
    }

    .step img {
        width: 45px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .step p {
        font-size: 16px;
        line-height: 1.4;
    }

    .step-arrow {
        display: none;
    }

    .cta-wrap {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .cta-wrap h2 {
        font-size: 42px;
    }

    .phone {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .links-columns,
    .footer-contact li,
    .socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 70px;
    }

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

    .why-item {
        padding: 15px 0;
    }

    .number {
        font-size: 80px;
    }
}
/* ==========================================================================
   STYLE DLA PODSTRONY: SPŁYW DUNAJCEM – RAFTING
   ========================================================================== */
.rafting-hero{
	background-image: url(../img/oferta-rafting.jpg);
    background-size: cover;
    background-position: center;
}

/* Globalne pomocnicze klasy, jeśli ich brakuje */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Sekcja Wstępna (Intro) */
.rafting-intro {
    padding: 60px 0;
}

.pieniny-quote {
    border-left: 4px solid #f2b400;
    padding-left: 15px;
    margin: 20px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: #555;
}

/* Sekcja "Dlaczego z nami" na podstronie */
.why-us-rafting {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-lead {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.2rem;
    color: #444;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.why-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.why-box i {
    font-size: 2.5rem;
    color: #f2b400;
    margin-bottom: 15px;
}

.why-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #222;
}

/* Pasek z parametrami spływu (Ikony i tekst w linii) */
.route-info-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #222;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 1.8rem;
    color: #f2b400;
}

.fleet-info {
    font-size: 1.1rem;
    background: #fffde7;
    padding: 15px;
    border-left: 4px solid #f2b400;
    border-radius: 0 8px 8px 0;
    margin-bottom: 40px;
}

/* Bloki Logistyczne i Ważne Informacje */
.important-logistics {
    margin: 40px 0;
}

.important-logistics h3 {
    font-family: 'Oswald', sans-serif;
    color: #c0392b;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.logistics-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.logistics-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 12px;
}

.logistics-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.logistics-card ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-box {
    background: #f4f9f4;
    border-left: 4px solid #27ae60;
    padding: 15px;
    margin-top: 15px;
    border-radius: 0 6px 6px 0;
}

.benefit-box strong {
    color: #27ae60;
    display: block;
    margin-bottom: 5px;
}

/* Siatka map */
.maps-grid {
    margin: 40px 0;
}

.map-wrapper h4 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}

/* Sekcja FAQ – Akordeon */
.faq-section {
    padding: 60px 0;
    background: #fdfdfd;
}

.faq-accordion {
    max-width: 850px;
    margin: 40px auto 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.faq-question {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    padding: 18px 20px;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    color: #222;
    transition: background 0.2s ease, color 0.2s ease;
    list-style: none; /* Ukrywa standardową strzałkę w Chrome/Firefox */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none; /* Ukrywa strzałkę w Safari */
}

/* Dynamiczna estetyczna strzałka z boku */
.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    color: #f2b400;
}

.faq-item[open] .faq-question {
    background: #222;
    color: #fff;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
    color: #f2b400;
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    line-height: 1.6;
    color: #555;
    background: #fafafa;
}

/* Sekcja Cross-selling (Inne atrakcje) */
.cross-services {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card-alt {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    background: #fffde7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.service-icon-wrap i {
    font-size: 2rem;
    color: #f2b400;
}

.service-card-alt h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #222;
}

.service-card-alt p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-service {
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.btn-service:hover {
    background: #f2b400;
    color: #222;
}

/* RWD – Responsywność dla urządzeń mobilnych */
@media (max-width: 992px) {
    .why-features-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .route-info-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .why-features-grid, .services-grid, .route-info-strip, .maps-grid {
        grid-template-columns: 1fr;
    }
    .route-info-strip {
        gap: 15px;
    }
}

/* ==========================================================================
   STYLE DLA PODSTRONY: WYPOŻYCZALNIA ROWERÓW
   ========================================================================== */

/* Klasa tła Hero dla rowerów */
.bike-hero {
    background-image: url('../img/rowery-hero.jpg'); /* Podmień na odpowiednie zdjęcie */
    background-size: cover;
    background-position: center;
}

/* Wstęp i panele boczne */
.bike-intro {
    padding: 60px 0;
}

.intro-side-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Box z parametrami trasy */
.bike-route-box {
    background: #222;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bike-route-box h4 {
    font-family: 'Oswald', sans-serif;
    color: #f2b400;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.bike-route-box ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.bike-route-box ul li i {
    color: #f2b400;
}

/* Box Ciekawostki "Czy wiesz, że..." */
.did-you-know-box {
    background: #fffde7;
    border-left: 5px solid #f2b400;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.did-you-know-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.did-you-know-header i {
    font-size: 1.6rem;
    color: #f2b400;
}

.did-you-know-header h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #222;
    margin: 0;
}

.did-you-know-box p {
    color: #444;
    line-height: 1.6;
    margin: 0;
    font-size: 0.98rem;
}

/* Sekcja Cennika Rowerowego */
.bike-pricing {
    padding: 60px 0;
    background: #f9f9f9;
}

.bike-prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.bike-price-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bike-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

/* Karta wyróżniona (1 dzień) */
.bike-price-card.featured-card {
    border: 2px solid #f2b400;
    transform: scale(1.03);
}
.bike-price-card.featured-card:hover {
    transform: scale(1.03) translateY(-5px);
}

.badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f2b400;
    color: #222;
    padding: 5px 15px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(242,180,0,0.4);
}

.card-duration {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #222;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.card-amount {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    color: #222;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.card-amount span {
    font-size: 1.5rem;
    font-weight: 400;
}

.bike-price-card.featured-card .card-amount {
    color: #f2b400;
}

.card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
    flex-grow: 1;
}

.btn-bike-rent {
    display: block;
    background: #222;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.bike-price-card.featured-card .btn-bike-rent {
    background: #f2b400;
    color: #222;
}

.btn-bike-rent:hover, .bike-price-card.featured-card .btn-bike-rent:hover {
    background: #222;
    color: #fff;
}
.bike-price-card:not(.featured-card) .btn-bike-rent:hover {
    background: #f2b400;
    color: #222;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 992px) {
    .bike-prices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .bike-price-card.featured-card {
        transform: none;
    }
    .bike-price-card.featured-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .bike-prices-grid {
        grid-template-columns: 1fr;
    }
    .bike-price-card.featured-card {
        margin: 15px 0;
    }
}

/* ==========================================================================
   STYLE DLA PODSTRONY: WYPOŻYCZALNIA KAJAKÓW
   ========================================================================== */

/* Klasa tła Hero dla kajaków */
.kayak-hero {
    background-image: url('../img/kajaki-hero.jpg'); /* Podmień na odpowiednie zdjęcie */
    background-size: cover;
    background-position: center;
}

/* Sekcja Wstępna */
.kayak-intro {
    padding: 60px 0;
}

.kayak-route-strip {
    display: flex;
    gap: 30px;
    background: #f9f9f9;
    padding: 15px 25px;
    border-radius: 6px;
    border-left: 4px solid #f2b400;
    margin: 20px 0;
}

.route-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.route-strip-item i {
    color: #f2b400;
    font-size: 1.3rem;
}

.route-desc-text {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Sekcja Ekwipunku */
.kayak-equipment {
    padding: 60px 0;
    background: #fdfdfd;
    border-top: 1px solid #eaeaea;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.equip-box {
    background: #fff;
    border: 1px solid #eef0f2;
    padding: 35px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

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

.equip-icon {
    width: 65px;
    height: 65px;
    background: #222;
    color: #f2b400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
}

.equip-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    color: #222;
    margin-bottom: 12px;
}

.equip-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Sekcja Miejsc Spotkań / Logistyki */
.meeting-points {
    padding: 60px 0;
    background: #f9f9f9;
}

.points-grid {
    margin-top: 40px;
}

.point-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 35px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.point-card.special-point {
    border: 2px solid #222;
}

.point-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #222;
    color: #fff;
    padding: 4px 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 4px;
}

.point-badge.yellow {
    background: #f2b400;
    color: #222;
}

.point-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 15px;
    margin-top: 5px;
}

.point-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #222;
}

.point-location i {
    color: #f2b400;
    font-size: 1.3rem;
}

.point-address {
    font-style: normal;
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 500;
    color: #444;
    line-height: 1.4;
    font-size: 0.95rem;
}

.point-card p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 992px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .equipment-grid, .points-grid {
        grid-template-columns: 1fr;
    }
    .kayak-route-strip {
        flex-direction: column;
        gap: 10px;
    }
    .point-card {
        padding: 30px 20px;
    }
}
/* ==========================================================================
   STYLE DLA PODSTRONY: PRZEWODNIK I PILOT WYCIECZEK
   ========================================================================== */

/* Klasa tła Hero dla przewodnika */
.guide-hero {
    background-image: url('../img/przewodnik-hero.jpg'); /* Podmień na odpowiednie zdjęcie górskie */
    background-size: cover;
    background-position: center;
}

/* Sekcja Wstępna */
.guide-intro {
    padding: 60px 0;
}

.peaks-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.peaks-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.peaks-list li i {
    color: #f2b400;
    font-size: 1.2rem;
}

/* Karta boczna z grupami docelowymi */
.intro-side-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.guide-target-box {
    background: #f9f9f9;
    border-top: 4px solid #f2b400;
    padding: 35px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.guide-target-box h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-target-box h4 i {
    color: #f2b400;
}

.guide-target-box ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.guide-target-box ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
}

.guide-target-box ul li i {
    color: #27ae60;
    font-size: 0.95rem;
}

/* Sekcja Call To Action (Kontakt z przewodnikiem) */
.guide-cta-section {
    padding: 60px 0;
    background: #f4f5f7;
}

.cta-card {
    background: #fff;
    border: 1px solid #e0e4ec;
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.cta-icon {
    font-size: 3rem;
    color: #f2b400;
    margin-bottom: 20px;
}

.cta-card h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #222;
    margin-bottom: 15px;
}

.cta-card p {
    color: #666;
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.phone-box-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.phone-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #444;
}

.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #222;
    color: #fff;
    padding: 15px 35px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-cta-phone:hover {
    background: #f2b400;
    color: #222;
    transform: translateY(-2px);
}

.cta-subtext {
    font-size: 0.9rem !important;
    color: #999 !important;
    margin: 0 !important;
}

/* Responsywność */
@media (max-width: 768px) {
    .guide-target-box {
        padding: 25px;
    }
    .cta-card {
        padding: 40px 20px;
    }
    .cta-card h2 {
        font-size: 1.6rem;
    }
    .btn-cta-phone {
        font-size: 1.4rem;
        padding: 12px 25px;
    }
}
/* ==========================================================================
   STYLE DLA PODSTRONY: CENNIK SEZON 2026
   ========================================================================== */

/* Klasa tła Hero dla cennika */
.pricing-hero {
    background-image: url('../img/cennik-hero.jpg'); /* Podmień na odpowiednie zdjęcie */
    background-size: cover;
    background-position: center;
}

/* Główna sekcja cennika */
.main-pricing-section {
    padding: 60px 0;
}

.pricing-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.price-main-card {
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* Wyróżnienie karty promocyjnej/ulgowej */
.price-main-card.promo-card {
    border: 2px dashed #f2b400;
    background: #fffdf7;
}

.badge-promo {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #f2b400;
    padding: 4px 15px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 20px;
}

.price-icon {
    font-size: 2.5rem;
    color: #f2b400;
    margin-bottom: 15px;
}

.price-main-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 2px;
}

.price-subtitle {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.price-value {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1;
    margin-bottom: 25px;
}

.price-value span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1;
}

.price-features li {
    font-size: 0.98rem;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    color: #27ae60;
    font-size: 0.9rem;
}

.btn-price-book {
    display: block;
    background: #222;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-price-book:hover {
    background: #f2b400;
    color: #222;
}

/* Sekcja opłat dodatkowych */
.additional-payments {
    padding: 60px 0;
    background: #f9f9f9;
}

.extra-fees-grid {
    margin-top: 35px;
}

.extra-fee-box {
    background: #fff;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.extra-fee-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #f0f2f5;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.extra-fee-header > i {
    font-size: 2.2rem;
    color: #f2b400;
}

.extra-fee-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #222;
    margin: 0;
}

.extra-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #c0392b;
    margin-top: 2px;
}

.extra-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.extra-fee-body p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

/* Wyróżnienia bonusowe (Gratis) */
.bonus-alert, .bonus-alert-green {
    padding: 12px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.bonus-alert {
    background: #fffde7;
    border-left: 4px solid #f2b400;
    color: #222;
}
.bonus-alert i {
    color: #f2b400;
    font-size: 1.1rem;
}

.bonus-alert-green {
    background: #f4fbf6;
    border-left: 4px solid #27ae60;
    color: #222;
}
.bonus-alert-green i {
    color: #27ae60;
    font-size: 1.1rem;
}

/* Responsywność */
@media (max-width: 992px) {
    .pricing-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-main-grid, .extra-fees-grid {
        grid-template-columns: 1fr;
    }
    .price-main-card {
        padding: 35px 20px;
    }
}

/* ==========================================================================
   STYLE DLA PODSTRONY: PROPOZYCJA WYCIECZKI DLA GRUP
   ========================================================================== */

.trip-hero {
    background-image: url('../img/wycieczka-grupa-hero.jpg'); /* Podmień na odpowiednie zdjęcie grupowe z Pienin */
    background-size: cover;
    background-position: center;
}

.trip-intro-section {
    padding: 60px 0 20px 0;
}

/* Stylizacja Osi Czasu (Timeline) */
.trip-timeline-section {
    padding: 40px 0 60px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding-left: 30px;
    border-left: 3px dashed #e1e4e8;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -47px;
    top: 2px;
    width: 32px;
    height: 32px;
    background: #f2b400;
    color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 0 0 5px #fff;
}

.timeline-content {
    background: #fff;
    border: 1px solid #eef0f4;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.time-badge {
    display: inline-block;
    background: #222;
    color: #f2b400;
    padding: 3px 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.timeline-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #222;
    margin: 0 0 10px 0;
}

.timeline-content p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

/* Siatka Cennika Wycieczek */
.trip-pricing-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.trip-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.trip-price-card {
    background: #fff;
    border: 1px solid #e2e6eb;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
}

.trip-price-card.featured-trip-card {
    border: 2px solid #f2b400;
    transform: scale(1.03);
    background: #fffdf8;
}

.trip-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #f2b400;
    color: #222;
    padding: 4px 15px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border-radius: 20px;
    white-space: nowrap;
}

.trip-price-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    color: #444;
    margin-bottom: 5px;
}

.trip-range {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.trip-value {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1;
}

.trip-value span {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
}

.featured-trip-card .trip-value {
    color: #f2b400;
}

/* Ramka "Co zawiera cena" */
.price-includes-box {
    background: #fff;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    padding: 35px;
    max-width: 900px;
    margin: 40px auto 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.price-includes-box h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem;
    color: #222;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-includes-box h4 i {
    color: #27ae60;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.inc-item {
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.inc-item i {
    color: #f2b400;
    font-size: 1.1rem;
    margin-top: 2px;
}

/* System Gwiazdek / Opinii */
.trip-reviews {
    margin-top: 40px;
}

.trip-reviews .stars {
    color: #f2b400;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.review-note {
    font-style: italic;
    color: #666;
    font-size: 0.98rem;
}

/* Responsywność mobilna */
@media (max-width: 992px) {
    .trip-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .trip-price-card.featured-trip-card {
        transform: none;
    }
}

@media (max-width: 768px) {
    .trip-pricing-grid, .includes-grid {
        grid-template-columns: 1fr;
    }
    .timeline {
        padding-left: 20px;
    }
    .timeline-icon {
        left: -37px;
    }
    .price-includes-box {
        padding: 25px 20px;
    }
}
/* ==========================================================================
   STYLE DLA PODSTRONY: KONTAKT
   ========================================================================== */

.contact-hero {
    background-image: url('../img/kontakt-hero.jpg'); /* Podmień na dowolne zdjęcie z Krościenka/Pienin */
    background-size: cover;
    background-position: center;
}

.contact-page-section {
    padding: 60px 0;
}

/* Karta z danymi firmy */
.company-card {
    background: #fff;
    border: 1px solid #e1e5eb;
    border-radius: 6px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    margin-top: 30px;
}

.company-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #222;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

.company-role {
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #f2b400;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.info-links-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #fdf8e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2b400;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text p {
    margin: 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.5;
}

.contact-link {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #f2b400;
}

.contact-hint-box {
    background: #f9f9f9;
    border-left: 4px solid #222;
    padding: 20px 25px;
    border-radius: 0 4px 4px 0;
    margin-top: 30px;
}

.contact-hint-box h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    color: #222;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-hint-box p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Formularz kontaktowy */
.modern-contact-form {
    background: #fff;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group .required {
    color: #c0392b;
}

.input-wrapper, .textarea-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #aaa;
    font-size: 1rem;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.textarea-wrapper textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-wrapper input:focus, .textarea-wrapper textarea:focus {
    outline: none;
    border-color: #f2b400;
    box-shadow: 0 0 0 3px rgba(242, 180, 0, 0.1);
}

.form-privacy-note {
    margin-bottom: 25px;
}

.form-privacy-note p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    margin: 0;
}

.btn-submit-form {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #222;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-submit-form:hover {
    background: #f2b400;
    color: #222;
}

/* Responsywność */
@media (max-width: 768px) {
    .company-card {
        padding: 25px 20px;
    }
    .btn-submit-form {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   STYLE DLA PODSTRONY: REZERWACJA
   ========================================================================== */

.booking-hero {
    background-image: url('../img/rezerwacja-hero.jpg'); /* Podmień na odpowiednie zdjęcie aktywne */
    background-size: cover;
    background-position: center;
}

.booking-page-section {
    padding: 60px 0;
}

/* Formularz stylizacja */
.modern-booking-form {
    background: #fff;
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Pola typu Select (Wybór oferty) */
.modern-booking-form select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    appearance: none; /* Ukrycie systemowej strzałki */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'><path d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    transition: border-color 0.2s ease;
}

.modern-booking-form select:focus {
    outline: none;
    border-color: #f2b400;
}

.form-disclaimer {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.5;
    margin: 20px 0;
    font-style: italic;
}

.btn-submit-booking {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #222;
    color: #fff;
    border: none;
    padding: 16px 35px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-submit-booking:hover {
    background: #f2b400;
    color: #222;
}

/* Kolumna Informacyjna */
.booking-company-details {
    background: #222;
    color: #fff;
    padding: 30px;
    border-radius: 6px;
    margin-top: 30px;
}

.booking-company-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: #f2b400;
    margin: 0 0 10px 0;
}

.company-address {
    font-size: 1.05rem;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.fast-contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.fast-contact-links .c-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.2s ease;
}

.fast-contact-links .c-link:hover {
    color: #f2b400;
}

/* Logistyka Punktów Spływu */
.route-logistics-box {
    background: #fff;
    border: 1px solid #e1e5eb;
    border-radius: 6px;
    padding: 30px;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.route-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.route-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.start-dot {
    background: #eef9f1;
    color: #27ae60;
}

.end-dot {
    background: #fdf8e7;
    color: #f2b400;
}

.route-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    color: #222;
    margin: 0 0 6px 0;
}

.route-info p {
    margin: 0;
    color: #555;
    font-size: 0.98rem;
    line-height: 1.5;
}

/* Blok ostrzeżeń/uwag */
.booking-notice {
    background: #f9f9f9;
    border-top: 4px solid #f2b400;
    padding: 25px;
    border-radius: 4px;
    margin-top: 25px;
}

.booking-notice h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #222;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-notice h4 i {
    color: #f2b400;
}

.booking-notice ul {
    margin: 0;
    padding-left: 20px;
}

.booking-notice ul li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.4;
}

.booking-notice ul li:last-child {
    margin-bottom: 0;
}

/* Responsywność */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* ==========================================================================
   STYLE DLA PODSTRONY: OFERTA (SERDECZNIE ZAPRASZAMY)
   ========================================================================== */

.offer-hero {
    background-image: url('../img/oferta-hero.jpg'); /* Podmień na piękną panoramę Pienin */
    background-size: cover;
    background-position: center;
}

/* Kafelki szybkiej nawigacji */
.quick-offer-nav {
    padding: 50px 0;
    background: #f9f9f9;
}

.offer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -100px; /* Delikatne najechanie kafelków na hero dla lepszego UX */
    position: relative;
    z-index: 10;
}

.offer-nav-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-bottom: 4px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.offer-nav-card:hover {
    transform: translateY(-5px);
    border-color: #f2b400;
}



.offer-nav-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #222;
    margin: 0 0 10px 0;
}

.offer-nav-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.btn-scroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #222;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, color 0.2s ease;
}

.offer-nav-card:hover .btn-scroll {
    background: #f2b400;
    color: #222;
}

/* Rozbudowane sekcje szczegółowe */
.offer-detailed-section {
    padding: 80px 0;
}

.offer-detailed-section.bg-light {
    background: #fcfcfc;
}

.offer-detailed-section.bg-dark {
    background: #1a1a1a;
}

.section-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: #f2b400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-tag.tag-yellow {
    color: #f2b400;
}

.offer-detailed-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    color: #222;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.offer-detailed-section.bg-dark h2 {
    color: #fff;
}

.section-text-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.white-text p {
    color: #ccc;
}

/* Atrapowe panele na zdjęcia w gridzie */
.section-image-side {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 350px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.img-rafting { background-image: url('../img/oferta-rafting.jpg'); }
.img-kayak { background-image: url('../img/oferta-kajaki.jpg'); }
.img-bikes { background-image: url('../img/oferta-rowery.jpg'); }
.img-guide { background-image: url('../img/oferta-przewodnik.jpg'); }

/* Liczniki (Counters) */
.counters-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.counter-box {
    flex: 1;
}

.counter-box .count-num {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #222;
    line-height: 1;
}

.counter-box .count-num span {
    font-size: 1.4rem;
    font-weight: 500;
}

.counter-box p {
    font-size: 0.9rem;
    color: #777;
    margin: 5px 0 0 0 !important;
    text-transform: uppercase;
    font-weight: 600;
}

/* Linki i Przyciski Akcentowe */
.btn-accent-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #222;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-top: 15px;
    transition: color 0.2s ease;
}

.btn-accent-link:hover {
    color: #f2b400;
}

.btn-accent-yellow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f2b400;
    color: #222;
    padding: 12px 28px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    transition: background 0.2s ease;
}

.btn-accent-yellow:hover {
    background: #fff;
}

/* Siatka Tras Rowerowych */
.routes-container {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.routes-container h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #222;
}

.routes-container h3 i {
    color: #f2b400;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.route-card {
    background: #fdfdfd;
    border: 1px solid #eef0f4;
    padding: 25px;
    border-radius: 6px;
    position: relative;
}

.route-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f2b400;
    opacity: 0.15;
}

.route-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    color: #f2b400;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.route-card p {
    font-size: 0.95rem;
    margin: 0 0 8px 0;
    color: #333;
}

.route-card .route-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 12px 0 0 0;
}

/* Elementy dedykowane sekcji Przewodnika */
.custom-li-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.custom-li-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 12px;
}

.custom-li-list li i {
    color: #f2b400;
    margin-top: 3px;
}

.hint-box-dark {
    background: #262626;
    border-left: 4px solid #f2b400;
    padding: 20px;
    border-radius: 0 4px 4px 0;
    margin: 25px 0;
}

.hint-box-dark h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 8px 0;
}

.hint-box-dark p {
    font-size: 0.95rem;
    color: #bbb !important;
    line-height: 1.5;
    margin: 0 !important;
}

/* RESPONSOWNOŚĆ I UKŁADY SPECJALNE */
.reverse-grid {
    direction: rtl;
}
.reverse-grid > * {
    direction: ltr; /* Reset kierunku tekstu wewnątrz kolumn */
}

@media (max-width: 1200px) {
    .offer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -50px;
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .routes-grid {
        grid-template-columns: 1fr;
    }
    .reverse-grid {
        direction: ltr;
    }
    .counters-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .offer-nav-grid {
        grid-template-columns: 1fr;
    }
    .offer-detailed-section {
        padding: 50px 0;
    }
    .offer-detailed-section h2 {
        font-size: 1.8rem;
    }
}