:root {
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --kolor-tla: #f9f7f3;
    --kolor-biel: #ffffff;
    --kolor-zloto: #b08d57;
    --kolor-zloto-ciemne: #9a7949;
    --kolor-tekstu: #3a332a;
    --kolor-tekstu-jasny: #555;
    --kolor-border: #e8e2d9;
    --kolor-pakiet-bg: #f0ebe4;
    --kolor-akcent-light: #fefdfb;
    --kolor-ramka-gold: #c7a76c;
    --kolor-czerwony-promo: #D90429;
    --shadow-lekki: 0 6px 20px rgba(0, 0, 0, 0.06);
    --shadow-premium: 0 18px 50px rgba(176, 141, 87, 0.15);
    --border-radius: 14px;
    --shadow-inset-light: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    background-color: var(--kolor-tla);
    color: var(--kolor-tekstu);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--kolor-tekstu);
    line-height: 1.2;
}

h2.section-title {
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--kolor-tekstu);
    letter-spacing: -0.5px;
}

h2.section-title svg {
    width: 34px;
    height: 34px;
    color: var(--kolor-zloto);
    stroke-width: 1.8;
    animation: pulseGold 2s infinite alternate;
}

@keyframes pulseGold {
    from {
        opacity: 0.8;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.05);
    }
}


h2.section-title span {
    font-family: var(--font-serif);
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--kolor-tekstu-jasny);
    max-width: 750px;
    margin: 0 auto 80px auto;
    line-height: 1.6;
}

section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background-color: transparent;
}

#o-nas,
#technologia,
#kontakt {
    background-color: var(--kolor-tla);
}

#promocja,
#zalety,
#cennik,
#faq {
    background-color: var(--kolor-biel);
}

.animated-section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animated-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--kolor-zloto), var(--kolor-zloto-ciemne));
    color: var(--kolor-biel);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-sans);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    box-shadow: 0 5px 20px rgba(176, 141, 87, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(176, 141, 87, 0.5);
    filter: brightness(1.05);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--kolor-zloto);
    border: 2px solid var(--kolor-zloto);
    box-shadow: none;
    padding: 14px 33px;
    font-weight: 500;
}

.btn-cta-secondary:hover {
    background: var(--kolor-zloto);
    color: var(--kolor-biel);
    box-shadow: 0 5px 15px rgba(176, 141, 87, 0.3);
    transform: translateY(-3px);
}

#star-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.navbar-modern {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent;
    position: fixed;
    top: 0;
    z-index: 1020;
    width: 100%;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar-modern .logo img {
    height: 150px;
    width: auto;
    transition: height 0.4s ease, opacity 0.4s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.navbar-modern.scrolled .logo img {
    height: 60px;
    opacity: 0.95;
    filter: drop-shadow(0 0 0 transparent);
}

.navbar-modern.scrolled {
    background-color: rgba(249, 247, 243, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid var(--kolor-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 8px 40px;
}

.navbar-modern .nav-links {
    list-style: none;
    display: flex;
    justify-self: center;
    flex-wrap: nowrap;
}

.navbar-modern .nav-links li {
    margin: 0 10px;
}

.navbar-modern .nav-links a {
    text-decoration: none;
    color: var(--kolor-biel);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
    padding: 10px 5px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.navbar-modern .nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--kolor-zloto);
    transition: width 0.3s ease;
}

.navbar-modern .nav-links a:hover::before,
.navbar-modern .nav-links a.active-link::before {
    width: 100%;
}

.navbar-modern.scrolled .nav-links a {
    color: var(--kolor-tekstu-jasny);
}

.navbar-modern.scrolled .nav-links a:hover {
    color: var(--kolor-zloto);
}

.navbar-modern.scrolled .nav-links a.active-link {
    color: var(--kolor-zloto-ciemne);
    font-weight: 700;
}

.navbar-modern.scrolled .nav-links a::before {
    background: var(--kolor-zloto-ciemne);
    height: 3px;
    bottom: -5px;
}

.navbar-modern .nav-links a svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
    opacity: 0.9;
    transition: all 0.3s ease;
    color: var(--kolor-biel);
}

.navbar-modern.scrolled .nav-links a svg {
    color: var(--kolor-tekstu-jasny);
}

.navbar-modern.scrolled .nav-links a:hover svg,
.navbar-modern.scrolled .nav-links a.active-link svg {
    opacity: 1;
    color: var(--kolor-zloto);
}

.navbar-modern .nav-links a:hover svg {
    color: var(--kolor-biel);
    opacity: 1;
}

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

.nav-socials {
    display: flex;
    gap: 12px;
}

.nav-socials a {
    color: var(--kolor-biel);
    transition: all 0.3s ease;
}

.navbar-modern.scrolled .nav-socials a {
    color: var(--kolor-zloto);
}

.navbar-modern.scrolled .nav-socials a:hover {
    color: var(--kolor-tekstu);
}

.nav-socials a:hover {
    transform: scale(1.2);
    color: var(--kolor-zloto);
}

.nav-socials svg {
    width: 24px;
    height: 24px;
}

.navbar-modern .btn-cta {
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    color: var(--kolor-biel);
    background: url('banner.jpeg') no-repeat center center/cover;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(30, 25, 20, 0.9) 0%, rgba(58, 51, 42, 0.6) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
    text-align: left;
    padding: 0;
}

.hero-content h3 {
    font-family: var(--font-sans);
    font-size: 2rem;
    color: var(--kolor-zloto);
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideInUp 0.8s 0.2s ease-out forwards;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 6rem;
    color: var(--kolor-biel);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.05;
    opacity: 0;
    animation: slideInUp 0.8s 0.4s ease-out forwards;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 0 50px 0;
    line-height: 1.7;
    opacity: 0;
    animation: slideInUp 0.8s 0.6s ease-out forwards;
}

.hero-content .btn-cta {
    opacity: 0;
    animation: slideInUp 0.8s 0.8s ease-out forwards;
}

#o-nas {
    background-color: var(--kolor-biel);
    padding-bottom: 60px;
}

.o-nas-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.o-nas-img {
    width: 100%;
    height: 580px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: relative;
    transition: box-shadow 0.5s ease;
}

.o-nas-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.o-nas-img:hover img {
    transform: scale(1.08);
}

.o-nas-text h3 {
    font-size: 3rem;
    color: var(--kolor-zloto);
    margin-bottom: 30px;
    border-left: 5px solid var(--kolor-zloto);
    padding-left: 20px;
    line-height: 1.1;
}

.o-nas-text p {
    font-size: 1.1rem;
    color: var(--kolor-tekstu-jasny);
    margin-bottom: 25px;
    line-height: 1.7;
}

.o-nas-text .signature {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--kolor-tekstu);
    margin-top: 40px;
    opacity: 0.9;
    font-style: italic;
    letter-spacing: 1px;
}

.filozofia-wrapper {
    margin-top: 50px;
    padding-top: 60px;
    border-top: 1px solid var(--kolor-border);
}

.filozofia-wrapper h3 {
    font-size: 2.8rem;
    font-family: var(--font-serif);
    color: var(--kolor-tekstu);
    text-align: center;
    margin-bottom: 50px;
}

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

.filozofia-item {
    background: var(--kolor-pakiet-bg);
    border: 1px solid var(--kolor-border);
    border-radius: var(--border-radius);
    padding: 35px;
    text-align: left;
    box-shadow: var(--shadow-lekki);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.filozofia-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(176, 141, 87, 0.25);
    background-color: var(--kolor-biel);
    border-color: var(--kolor-zloto);
}

.filozofia-item svg {
    width: 45px;
    height: 45px;
    color: var(--kolor-zloto);
    margin-bottom: 20px;
    stroke-width: 1.5;
    transition: transform 0.4s ease;
}

.filozofia-item:hover svg {
    transform: rotate(5deg) scale(1.1);
}

.filozofia-item h4 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--kolor-tekstu);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filozofia-item p {
    font-size: 1rem;
    color: var(--kolor-tekstu-jasny);
    line-height: 1.6;
    margin-bottom: 0;
}

#zalety {
    background-color: var(--kolor-biel);
}

.zalety-modern-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--kolor-biel) 0%, var(--kolor-akcent-light) 100%);
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    border: 2px solid var(--kolor-border);
}

.zalety-image-side {
    display: none;
}

.zalety-content-side h3 {
    font-size: 3rem;
    color: var(--kolor-zloto-ciemne);
    margin-bottom: 25px;
    border-left: 5px solid var(--kolor-zloto);
    padding-left: 15px;
}

.zalety-content-side>p {
    font-size: 1.15rem;
    color: var(--kolor-tekstu-jasny);
    margin-bottom: 40px;
    line-height: 1.7;
}

.zalety-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zalety-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border-bottom: 1px dashed var(--kolor-border);
    padding-bottom: 15px;
    transition: transform 0.3s ease;
}

.zalety-feature-list li:hover {
    transform: translateX(5px);
}

.zalety-feature-list .icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--kolor-pakiet-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-inset-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zalety-feature-list li:hover .icon-wrapper {
    background-color: var(--kolor-zloto-ciemne);
    box-shadow: 0 0 20px rgba(176, 141, 87, 0.4);
}

.zalety-feature-list li:hover .icon-wrapper svg {
    color: var(--kolor-biel);
    transform: scale(1.2) rotate(5deg);
}

.zalety-feature-list .icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--kolor-zloto);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    stroke-width: 1.8;
}

.zalety-feature-list .text-content h4 {
    font-size: 1.3rem;
    font-family: var(--font-sans);
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--kolor-tekstu);
}

.zalety-feature-list .text-content p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: var(--kolor-tekstu-jasny);
}

#promocja {
    background: linear-gradient(180deg, var(--kolor-biel) 0%, var(--kolor-pakiet-bg) 100%);
    padding: 100px 0;
}

.promocje-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.promocja-card {
    width: 100%;
    background: var(--kolor-biel);
    border: 3px solid var(--kolor-ramka-gold);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(176, 141, 87, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    min-height: 350px;
}

.promocja-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(176, 141, 87, 0.4);
}

.main-promo-card {
    border: 3px solid var(--kolor-zloto-ciemne);
}

.promocja-img-side {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    width: 40%;
    flex-shrink: 0;
    background-color: var(--kolor-pakiet-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.promocja-img-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: none;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.98);
    position: relative;
}

.promocja-card:hover .promocja-img-side img {
    transform: scale(1.05);
    filter: brightness(1.0);
}

.promo-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    transform: none;
    background: var(--kolor-czerwony-promo);
    color: var(--kolor-biel);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    text-transform: uppercase;
}

.promocja-content-side {
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, #fefdfb 0%, var(--kolor-tla) 100%);
    width: 60%;
    flex-grow: 1;
    text-align: left;
}

.promo-subtitle {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--kolor-czerwony-promo);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: left;
}

.promo-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--kolor-tekstu);
    line-height: 1.1;
    font-weight: 700;
    text-align: left;
}

.promo-description {
    font-size: 1.1rem;
    color: var(--kolor-tekstu-jasny);
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: left;
}

.promo-features {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 0;
    align-items: flex-start;
}

.promo-features li {
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--kolor-tekstu);
    text-align: left;
}

.promo-features li svg {
    width: 20px;
    height: 20px;
    color: var(--kolor-zloto-ciemne);
    flex-shrink: 0;
    stroke-width: 2;
}

.promo-timer-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 25px;
    padding: 20px 0;
    border-top: 1px solid var(--kolor-border);
    text-align: left;
    width: 100%;
}

.promo-timer-card h5 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--kolor-tekstu);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.countdown-timer-inline {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    font-size: 1rem;
    width: 100%;
}

.timer-box-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--kolor-akcent-light);
    border: 2px solid var(--kolor-zloto);
    border-radius: 8px;
    padding: 6px 4px;
    min-width: 60px;
    flex-grow: 0;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(176, 141, 87, 0.2);
    transition: all 0.2s ease;
}

.timer-box-inline:hover {
    background: var(--kolor-zloto);
}

.timer-box-inline:hover span,
.timer-box-inline:hover .label {
    color: var(--kolor-biel);
}

.timer-box-inline span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-sans);
    color: var(--kolor-zloto-ciemne);
    line-height: 1.2;
    margin-bottom: 3px;
    transition: color 0.2s ease;
}

.timer-box-inline .label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--kolor-tekstu-jasny);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.promo-countdown-bar-wrap {
    display: none;
}


#technologia .content-box {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: none !important;
}

#technologia .technologia-content {
    background: linear-gradient(145deg, #fefdfb 0%, var(--kolor-pakiet-bg) 100%);
    border: 1px solid var(--kolor-ramka-gold);
    padding: 60px;
    box-shadow: 0 20px 60px rgba(176, 141, 87, 0.15);
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 70px;
}

.technologia-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: transform 0.5s ease;
}

.technologia-img:hover {
    transform: scale(1.02);
}

.technologia-img img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lekki);
    object-fit: cover;
    object-position: right;
    display: block;
}

.technologia-text h3 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--kolor-zloto-ciemne);
    border-bottom: 3px solid var(--kolor-zloto);
    padding-bottom: 10px;
}

.technologia-text p {
    margin-bottom: 35px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--kolor-tekstu-jasny);
}

.icon-list {
    list-style: none;
    padding-left: 0;
}

.icon-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--kolor-tekstu-jasny);
}

.icon-list li svg {
    position: absolute;
    left: 0;
    top: 0px;
    width: 28px;
    height: 28px;
    color: var(--kolor-zloto);
    stroke-width: 1.8;
}

.icon-list li strong {
    display: block;
    color: var(--kolor-tekstu);
    font-weight: 700;
    margin-bottom: 3px;
    font-size: 1.1rem;
}

#cennik {
    background-color: var(--kolor-biel);
}

.cennik-toggle {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cennik-toggle button {
    font-weight: 700;
    padding: 12px 35px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-transform: uppercase;
}

.cennik-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    min-height: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.price-list-container {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: fadeIn 0.6s ease;
}

.price-list-container.active {
    display: block;
    opacity: 1;
}

.price-category {
    margin-bottom: 60px;
    background: var(--kolor-biel);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--kolor-border);
    position: relative;
    overflow: hidden;
}

.price-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--kolor-zloto), var(--kolor-zloto-ciemne));
    opacity: 1;
}

.price-category:last-child {
    margin-bottom: 0;
}

.price-category h3 {
    font-size: 2.8rem;
    font-family: var(--font-serif);
    color: var(--kolor-tekstu);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--kolor-border);
    display: block;
    text-align: center;
}

.price-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 700px;
}

.price-table thead th {
    background-color: var(--kolor-pakiet-bg);
    color: var(--kolor-tekstu);
    font-weight: 700;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.05rem;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--kolor-zloto-ciemne);
    text-transform: uppercase;
}

.price-table thead th:first-child {
    border-top-left-radius: 8px;
}

.price-table thead th:last-child {
    border-top-right-radius: 8px;
}

.price-highlight-label {
    display: inline-block;
    padding: 3px 8px;
    background-color: var(--kolor-zloto);
    color: var(--kolor-biel);
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 700;
    margin-left: 5px;
}

.price-table tbody tr {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.price-table tbody tr:nth-child(even) {
    background-color: var(--kolor-pakiet-bg);
}

.price-table tbody tr:hover {
    background-color: #fdfaf5;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-table td {
    padding: 18px 25px;
    border-bottom: 1px solid var(--kolor-border);
    vertical-align: middle;
    font-size: 1rem;
    color: var(--kolor-tekstu);
    font-weight: 500;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table .single-price {
    font-weight: 700;
    color: var(--kolor-tekstu);
    font-size: 1.05rem;
}

.price-table .highlight-package-price {
    font-weight: 800;
    color: var(--kolor-zloto-ciemne);
    background-color: #fffaf2;
    border-left: 5px solid var(--kolor-ramka-gold);
    font-size: 1.15rem;
}

#cennik-packages .price-table .highlight-tag {
    background: var(--kolor-zloto);
    color: var(--kolor-biel);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 10px;
    display: inline-block;
    text-transform: uppercase;
}

#rezerwacja {
    text-align: center;
    background-color: var(--kolor-tla);
}

.booking-widget {
    max-width: 850px;
    margin: 0 auto;
    background: var(--kolor-biel);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    text-align: left;
    border: 1px solid var(--kolor-ramka-gold);
}

.booking-header {
    background: linear-gradient(135deg, var(--kolor-zloto), var(--kolor-zloto-ciemne));
    padding: 30px 40px;
}

.booking-header h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--kolor-biel);
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.booking-content {
    padding: 40px 50px;
}

.booking-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px dashed var(--kolor-border);
    padding-bottom: 20px;
}

.booking-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #aaa;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.booking-steps .step .num {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    background: var(--kolor-tla);
    color: #aaa;
    font-weight: 700;
    z-index: 2;
}

.booking-steps .step.active {
    color: var(--kolor-zloto-ciemne);
    font-weight: 700;
}

.booking-steps .step.active .num {
    background: var(--kolor-zloto);
    color: var(--kolor-biel);
    border-color: var(--kolor-zloto);
    transform: scale(1.1);
}

.booking-section {
    display: none;
}

.booking-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.booking-section h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--kolor-tekstu);
    font-family: var(--font-serif);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--kolor-tekstu-jasny);
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 18px;
    border: 2px solid var(--kolor-border);
    border-radius: 12px;
    background: var(--kolor-biel);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: var(--shadow-inset-light);
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b08d57' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 1em;
    padding-right: 40px;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--kolor-zloto-ciemne);
    box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.3);
}

.calendar {
    margin-top: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header .month-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--kolor-tekstu);
}

.calendar-header .nav-arrow {
    cursor: pointer;
    color: var(--kolor-zloto);
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
}

.calendar-header .nav-arrow svg {
    width: 24px;
    height: 24px;
}

.calendar-header .nav-arrow:hover {
    transform: scale(1.2);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-days .day-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    color: #aaa;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-grid .day {
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
    border-radius: 8px;
    cursor: not-allowed;
    color: #ccc;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-grid .day.active {
    color: var(--kolor-tekstu);
    background: var(--kolor-pakiet-bg);
    cursor: pointer;
    border: 1px solid var(--kolor-zloto);
    transition: all 0.2s ease;
}

.calendar-grid .day.active:hover {
    background: var(--kolor-zloto);
    color: var(--kolor-biel);
    border-color: var(--kolor-zloto);
    transform: scale(1.05);
}

.calendar-grid .day.selected {
    background: var(--kolor-zloto-ciemne);
    color: var(--kolor-biel);
    border-color: var(--kolor-zloto-ciemne);
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(176, 141, 87, 0.3);
}

.calendar-grid .day.disabled {
    background: #f0f0f0;
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.time-slot {
    padding: 15px;
    border: 2px solid var(--kolor-border);
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot:hover {
    background: var(--kolor-zloto);
    color: var(--kolor-biel);
    border-color: var(--kolor-zloto);
}

.time-slot.selected {
    background: var(--kolor-zloto-ciemne);
    color: var(--kolor-biel);
    border-color: var(--kolor-zloto-ciemne);
    box-shadow: 0 4px 10px rgba(176, 141, 87, 0.3);
}

.time-slot.disabled {
    background: #f0f0f0;
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    position: relative;
    font-size: 0.8rem;
    padding-top: 15px;
}

.time-slot.disabled::after {
    content: "ZAREZERWOWANE";
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    font-size: 0.65rem;
    font-weight: 700;
    color: #a0a0a0;
    letter-spacing: 0.5px;
}


.booking-success-message {
    text-align: center;
    padding: 60px 40px;
}

.booking-success-message .icon-wrapper {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--kolor-zloto), var(--kolor-zloto-ciemne));
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: scale(0);
    animation: popIn 0.5s 0.2s ease-out forwards;
}

.booking-success-message svg {
    width: 60px;
    height: 60px;
}

@keyframes popIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.booking-widget .booking-error-message {
    padding: 20px;
    background-color: #fff4f4;
    border: 1px solid var(--kolor-czerwony-promo);
    color: var(--kolor-czerwony-promo);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}


#faq {
    background-color: var(--kolor-biel);
    padding: 120px 0;
}

.faq-layout-wrapper {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    background: var(--kolor-biel);
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: none;
    border: none;
}

.faq-image-side {
    display: none;
}

.faq-content-side {
    width: 100%;
}

#faq .faq-container {
    margin: 0;
    max-width: 100%;
}

.faq-item {
    border: none;
    background: var(--kolor-biel);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lekki);
    margin-bottom: 20px;
    overflow: hidden;
    border-left: 5px solid var(--kolor-border);
    transition: box-shadow 0.4s ease, background 0.4s ease, border-left-color 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(176, 141, 87, 0.1);
    border-left-color: var(--kolor-zloto);
    background: var(--kolor-akcent-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    cursor: pointer;
}

.faq-question h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--kolor-tekstu);
    margin: 0;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--kolor-zloto-ciemne);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    stroke-width: 2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    background: var(--kolor-biel);
    border-top: none;
}

.faq-answer p {
    padding: 0 35px 0 35px;
    font-size: 1rem;
    color: var(--kolor-tekstu-jasny);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    background: var(--kolor-pakiet-bg);
    border-top: 1px solid var(--kolor-border);
}

.faq-item.active .faq-answer p {
    padding: 20px 35px 35px 35px;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
}


#kontakt {
    background-color: var(--kolor-tla);
}

.kontakt-content-wrapper {
    background: var(--kolor-biel);
    padding: 70px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--kolor-ramka-gold);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 50px;
}

.kontakt-info h3,
.kontakt-form h3 {
    font-size: 3rem;
    color: var(--kolor-zloto-ciemne);
    font-family: var(--font-serif);
    margin-bottom: 30px;
    border-bottom: 3px solid var(--kolor-zloto);
    padding-bottom: 10px;
}

.kontakt-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--kolor-tekstu-jasny);
}

.kontakt-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.kontakt-item .icon-wrapper {
    flex-shrink: 0;
    margin-right: 20px;
    color: var(--kolor-zloto);
}

.kontakt-item .icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.kontakt-item .text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--kolor-tekstu);
}

.kontakt-item .text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--kolor-tekstu-jasny);
    margin-bottom: 3px;
}

.kontakt-item a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.kontakt-item a:hover {
    color: var(--kolor-zloto-ciemne);
}

.form-group-minimal {
    position: relative;
    margin-bottom: 35px;
}

.form-group-minimal label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--kolor-tekstu-jasny);
}

.form-group-minimal input,
.form-group-minimal textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid var(--kolor-border);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    outline: none;
    color: var(--kolor-tekstu);
}

.form-group-minimal textarea {
    height: 120px;
    resize: vertical;
}

.form-group-minimal input:focus,
.form-group-minimal textarea:focus {
    border-bottom-color: var(--kolor-zloto-ciemne);
}

.btn-cta.btn-form {
    border-radius: 8px;
    padding: 16px 40px;
}

.form-success-message {
    padding: 30px;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--kolor-border);
    box-shadow: var(--shadow-lekki);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-modern {
    padding: 70px 0;
    background-color: #3f3325;
    color: #d1c8bc;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col img {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--kolor-biel);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul a {
    text-decoration: none;
    color: #d1c8bc;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.footer-col ul a:hover {
    color: var(--kolor-zloto);
}

.footer-col ul a svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: var(--kolor-zloto);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.footer-col ul a:hover svg {
    color: var(--kolor-biel);
}

.footer-col ul li.contact-item-no-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1c8bc;
    font-size: 1rem;
}

.footer-col ul li.contact-item-no-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: var(--kolor-zloto);
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #5a4b37;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5a4b37;
    border-radius: 50%;
    color: var(--kolor-biel);
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background: var(--kolor-zloto);
    transform: scale(1.1);
}

.social-icons svg {
    width: 22px;
    height: 22px;
}

.messenger-dymek {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--kolor-zloto), var(--kolor-zloto-ciemne));
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    text-transform: uppercase;
}

.messenger-dymek svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.messenger-dymek:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.promo-blink {
    margin-left: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--kolor-zloto-ciemne);
    animation: blink-animation 1.2s infinite;
    display: inline-block;
}

@keyframes blink-animation {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(249, 247, 243, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 15px 20px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1010;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
    border-top: 1px solid rgba(176, 141, 87, 0.3);
    color: var(--kolor-tekstu);
    font-size: 0.95rem;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    max-width: 600px;
}

.cookie-banner p a {
    color: var(--kolor-zloto);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-banner p a:hover {
    color: var(--kolor-zloto-ciemne);
}

.cookie-banner button {
    background: var(--kolor-zloto);
    color: var(--kolor-biel);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(176, 141, 87, 0.3);
}

.cookie-banner button:hover {
    background: var(--kolor-zloto-ciemne);
    transform: translateY(-1px);
}

.hamburger-menu {
    display: none;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    z-index: 1003;
    justify-self: end;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--kolor-biel);
    border-radius: 3px;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-modern.scrolled .hamburger-menu span {
    background: var(--kolor-zloto);
}

.hamburger-menu span:nth-child(1) {
    top: 0;
}

.hamburger-menu span:nth-child(2) {
    top: 11px;
}

.hamburger-menu span:nth-child(3) {
    top: 22px;
}

.hamburger-menu.active span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
}

.navbar-modern.scrolled .hamburger-menu.active span {
    background: var(--kolor-zloto);
}

.mobile-dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(249, 247, 243, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1020;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 20px;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    max-height: 100vh;
    overflow-y: auto;
}

.mobile-dropdown-menu.active {
    transform: translateY(0);
}

.close-mobile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: var(--kolor-zloto);
    transition: transform 0.3s ease;
}

.close-mobile-menu svg {
    width: 30px;
    height: 30px;
}

.close-mobile-menu:hover {
    transform: rotate(90deg);
}

.mobile-dropdown-menu .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
    margin-bottom: 20px;
}

.mobile-dropdown-menu .nav-links li {
    margin: 0;
    list-style: none;
    width: 100%;
}

.mobile-dropdown-menu .nav-links a {
    font-size: 1.1rem;
    color: var(--kolor-tekstu);
    font-weight: 500;
    gap: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease;
    border-radius: 8px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-dropdown-menu .nav-links a:hover {
    color: var(--kolor-zloto-ciemne);
    background: var(--kolor-pakiet-bg);
}

.mobile-dropdown-menu .nav-links a svg {
    width: 20px;
    height: 20px;
    stroke: var(--kolor-zloto);
    color: var(--kolor-zloto);
    opacity: 1;
}

.mobile-dropdown-menu .btn-cta {
    margin-top: 10px;
    width: 100%;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.menu-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}


@media (max-width: 1150px) {
    .promocje-grid {
        max-width: 850px;
        align-items: center;
        margin: 0 auto;
    }

    .promocja-card {
        flex-direction: row;
        width: 100%;
        min-height: 350px;
    }

    .promocja-img-side {
        width: 40%;
        min-height: 100%;
        max-width: none;
        padding: 15px;
    }

    .promocja-img-side img {
        object-fit: contain;
    }

    .promocja-content-side {
        width: 60%;
        padding: 40px;
        text-align: left;
    }

    .promo-title {
        font-size: 2.5rem;
        text-align: left;
    }

    .promo-subtitle,
    .promo-description,
    .promo-features,
    .promo-timer-card {
        text-align: left;
    }

    .promo-features {
        align-items: flex-start;
    }

    .promo-features li {
        justify-content: flex-start;
    }

    .promo-timer-card {
        align-items: flex-start;
    }

    .countdown-timer-inline {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .o-nas-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .o-nas-text h3 {
        font-size: 2.5rem;
        padding-left: 0;
        border-left: none;
        border-bottom: 3px solid var(--kolor-zloto);
        padding-bottom: 10px;
    }

    .o-nas-img {
        height: 450px;
    }

    .filozofia-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promocje-grid {
        max-width: 650px;
    }

    .promocja-card {
        flex-direction: column;
        width: 100%;
        min-height: auto;
        /* Zezwolenie na elastyczną wysokość karty */
    }

    /* KLUCZOWA POPRAWKA DLA TABLETÓW (i mniejszych) */
    .promocja-img-side {
        width: 100%;
        min-height: 250px;
        max-height: none;
        /* Usunięcie sztywnego ograniczenia max-height */
        height: auto;
        /* Wymuszenie elastyczności */
        padding: 40px 20px;
        /* Zwiększony pionowy padding dla większego marginesu */
    }

    .promocja-img-side img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        /* Utrzymanie contain, aby obrazek mieścił się w całości */
        margin: auto;
        /* Wyśrodkowanie wewnątrz kontenera */
    }

    .promocja-content-side {
        width: 100%;
        padding: 30px;
        text-align: center;
    }

    .promo-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .promo-subtitle,
    .promo-description {
        text-align: center;
    }

    .promo-features {
        align-items: center;
    }

    .promo-features li {
        justify-content: center;
    }

    .promo-timer-card {
        align-items: center;
    }

    .countdown-timer-inline {
        justify-content: center;
    }

    .technologia-content {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .technologia-img {
        grid-row: 1;
        margin-bottom: 30px;
    }

    .technologia-text h3 {
        font-size: 2.5rem;
    }

    .kontakt-content-wrapper {
        padding: 50px;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container {
        height: 350px;
    }

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

@media (max-width: 768px) {
    section {
        padding: 100px 0;
    }

    h2.section-title {
        font-size: 2.5rem;
    }

    #home {
        background-attachment: scroll;
        background-size: cover;
    }

    .navbar-modern,
    .navbar-modern.scrolled {
        padding: 10px 20px;
        grid-template-columns: auto 1fr;
    }

    .navbar-modern .logo img,
    .navbar-modern.scrolled .logo img {
        height: 50px;
    }

    .navbar-modern .nav-links,
    .navbar-modern .nav-actions {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content h3 {
        font-size: 1.5rem;
    }

    .zalety-modern-layout {
        padding: 40px;
    }

    .filozofia-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-content-side {
        padding: 30px;
    }

    .promo-features {
        align-items: flex-start;
        text-align: left;
    }

    .promo-features li {
        justify-content: flex-start;
        text-align: left;
    }

    .price-category {
        padding: 25px;
        margin-bottom: 30px;
    }

    .price-category h3 {
        font-size: 2.2rem;
        padding-bottom: 15px;
        margin-bottom: 25px;
    }

    .price-table-wrapper {
        overflow-x: hidden;
    }

    .price-table {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 100%;
    }

    .price-table thead {
        display: none;
    }

    .price-table tr {
        display: flex;
        flex-direction: column;
        border: 1px solid var(--kolor-border);
        margin-bottom: 15px;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow-lekki);
        transition: transform 0.2s ease;
    }

    .price-table tr:hover {
        transform: translateY(-2px);
    }

    .price-table tbody tr:nth-child(even) {
        background-color: var(--kolor-biel);
    }

    .price-table tbody tr:nth-child(odd) {
        background-color: var(--kolor-pakiet-bg);
    }


    .price-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 15px 20px;
        position: relative;
        border-bottom: 1px solid var(--kolor-border);
        font-size: 1rem;
        font-weight: 500;
    }

    .price-table td:first-child {
        border-top: 3px solid var(--kolor-zloto);
        background-color: var(--kolor-pakiet-bg);
        text-align: left;
        font-weight: 700;
        color: var(--kolor-tekstu);
        padding: 15px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--kolor-border);
    }

    .price-table td:first-child::before {
        content: none !important;
    }

    .price-table td[data-label]::before {
        content: attr(data-label) ":";
        font-weight: 700;
        text-transform: uppercase;
        color: var(--kolor-tekstu);
        font-size: 0.9rem;
        margin-right: 15px;
    }

    .price-table td:last-child {
        border-bottom: none;
    }

    .price-table .highlight-package-price {
        background-color: #fffaf2;
        color: var(--kolor-zloto-ciemne);
        font-size: 1.15rem;
        font-weight: 700;
        border-left: none;
    }

    .booking-steps {
        grid-template-columns: 1fr;
    }

    .booking-steps .step {
        flex-direction: row;
        justify-content: flex-start;
    }

    .booking-steps .step .num {
        margin-right: 15px;
        margin-bottom: 0;
    }

    .booking-content {
        padding: 30px;
    }

    .kontakt-content-wrapper {
        padding: 30px;
    }

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

    .messenger-dymek span {
        display: none;
    }

    .messenger-dymek {
        padding: 15px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        right: 15px;
        bottom: 15px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-banner button {
        width: 100%;
        padding: 10px;
    }
}

@media (max-width: 500px) {
    h2.section-title {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h3 {
        font-size: 1.2rem;
    }

    .o-nas-text h3 {
        font-size: 1.8rem;
    }

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

    .promocja-card {
        min-height: auto;
    }

    /* KLUCZOWA POPRAWKA DLA TELEFONÓW */
    .promocja-img-side {
        min-height: 150px;
        max-height: none;
        /* Całkowicie usuwamy sztywne ograniczenie wysokości */
        height: auto;
        /* Wymuszenie elastyczności */
        padding: 40px 15px;
        /* Duży padding dla marginesu od góry i dołu */
    }

    .promo-title {
        font-size: 1.6rem;
    }

    .promo-timer-card {
        padding: 15px 0;
    }

    .countdown-timer-inline {
        max-width: 100%;
        gap: 4px;
        justify-content: space-between;
    }

    .timer-box-inline {
        min-width: 50px;
        padding: 6px 3px;
    }

    .timer-box-inline span {
        font-size: 1.4rem;
    }

    .timer-box-inline .label {
        font-size: 0.6rem;
    }

    .btn-cta-promo {
        font-size: 1rem;
        padding: 12px 20px;
    }

    .countdown-info h4 {
        font-size: 1rem;
    }

    .mobile-dropdown-menu {
        width: 100%;
    }

    .kontakt-content-wrapper {
        padding: 20px;
    }
.voucher-box {
    display: flex;
    /* Układ: obok siebie */
    align-items: center;
    /* Wyśrodkowanie w pionie */
    justify-content: space-between;
    gap: 60px;
    /* Odstęp między zdjęciem a tekstem */

    background: linear-gradient(145deg, #fefdfb 0%, #f4f1ea 100%);
    /* Luksusowe tło */
    border: 1px solid #d4b88a;
    /* Delikatna złota ramka */
    border-radius: 20px;
    /* Zaokrąglenie rogów boksu */
    box-shadow: 0 20px 60px rgba(176, 141, 87, 0.15);
    /* Cień pod boksem */
    padding: 60px;
    /* Wewnętrzny odstęp */
    margin-top: 20px;
}

/* LEWA STRONA - Kontener zdjęcia */
.voucher-visual {
    flex: 1;
    /* Zajmuje 1 część szerokości */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stylizacja samego zdjęcia Vouchera */
.voucher-visual img {
    width: auto;
    /* Szerokość dostosowuje się do wysokości */
    max-width: 100%;
    /* Ale nie szersze niż kontener */
    height: auto;
    max-height: 550px;
    /* OGRANICZENIE WYSOKOŚCI (kluczowe dla pionowego zdjęcia) */

    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    /* Cień pod zdjęciem */
    transition: transform 0.4s ease;
}

.voucher-visual img:hover {
    transform: scale(1.02);
    /* Lekki efekt powiększenia */
}

/* PRAWA STRONA - Tekst */
.voucher-desc {
    flex: 1;
    /* Zajmuje 1 część szerokości (równo ze zdjęciem) */
}

.voucher-desc h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #9a7949;
    /* Ciemne złoto */
    margin-bottom: 25px;
    border-bottom: 2px solid #b08d57;
    padding-bottom: 15px;
}

.voucher-desc p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Wyróżniony tekst "Zasługujesz na coś wyjątkowego" */
.voucher-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: #b08d57;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 25px 0;
    padding-left: 15px;
    border-left: 4px solid #b08d57;
}

/* --- RESPONSYWNOŚĆ VOUCHERA (Dla telefonów i tabletów) --- */
@media (max-width: 950px) {
    .voucher-box {
        flex-direction: column;
        /* Ustawia elementy jeden pod drugim */
        padding: 40px 25px;
        text-align: center;
        /* Wyśrodkowanie tekstu na telefonie */
    }

    .voucher-visual {
        width: 100%;
        margin-bottom: 30px;
    }

    .voucher-visual img {
        max-height: 450px;
        /* Mniejsze zdjęcie na tablecie */
    }

    .voucher-desc {
        width: 100%;
    }

    .voucher-desc h3 {
        font-size: 2rem;
        border-bottom: none;
        /* Usunięcie linii na telefonie dla estetyki */
    }

    .voucher-highlight {
        border-left: none;
        /* Usunięcie bocznej kreski */
        border-bottom: 2px solid #b08d57;
        /* Dodanie dolnej kreski */
        padding-left: 0;
        padding-bottom: 10px;
        display: inline-block;
    }

    /* Wyśrodkowanie listy ikon na telefonie */
    .voucher-desc .icon-list li {
        justify-content: center;
        text-align: left;
        /* Tekst w ikonie wyrównany do lewej, ale całość wycentrowana */
    }
}