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

:root {
    --primary-color: #2563eb;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: -20px;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-text {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-gap {
    display: inline-block;
    width: 0.04em;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        justify-content: center;
        gap: 0.65rem;
        padding: 0.9rem 14px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo {
        font-size: 1.2rem;
        margin-left: 0;
        flex-shrink: 0;
    }

    .logo a {
        flex-shrink: 0;
        white-space: nowrap;
        gap: 8px;
    }

    .logo-text {
        white-space: nowrap;
    }

    .search-toggle {
        margin-left: 0;
        padding: 0.35rem;
    }

    .search-container,
    .social-icons {
        transform: translateX(-22px);
    }

    .hamburger {
        transform: translateX(-10px);
        padding: 0.35rem;
    }

    .social-icons {
        margin-right: 0 !important;
        gap: 6px;
    }

    .social-icons a {
        padding: 0.35rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/* Search */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    margin-left: 1rem;
}

.search-toggle:hover {
    color: var(--primary-color);
}

.search-toggle svg {
    width: 20px;
    height: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: -20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.social-icon.facebook-icon {
    color: #1877F2;
}

.social-icon.instagram-icon {
    color: #E4405F;
}

.social-icons a:hover {
    transform: translateY(-2px);
    background: var(--bg-light);
}

.social-icon.facebook-icon:hover {
    color: #166FE5;
}

.social-icon.instagram-icon:hover {
    color: #C13584;
}

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

@media (max-width: 768px) {
    .social-icons {
        gap: 6px;
    }
    
    .social-icons a svg {
        width: 20px;
        height: 20px;
    }
}

.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 1rem;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    z-index: 1001;
    overflow: hidden;
}

.search-box.active {
    display: flex;
    animation: searchSlideDown 0.3s ease;
}

@keyframes searchSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-box input {
    padding: 1rem 1.5rem;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: var(--text-color);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.search-result-item {
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--border-color);
}

.search-result-item:hover {
    background: var(--bg-light);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.search-result-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.search-result-item.highlight {
    background: rgba(37, 99, 235, 0.1);
}

.search-no-results {
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.search-result-title mark {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    font-weight: 700;
    padding: 0 2px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0 0;
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin: 0;
        padding: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        background: var(--bg-light);
        margin: 0.5rem 0 0 0;
    }

    .nav-dropdown .dropdown-arrow {
        transform: rotate(0deg);
    }

    .nav-dropdown:hover .dropdown-arrow {
        transform: rotate(0deg);
    }

    .nav-dropdown.active .dropdown-arrow,
    .nav-dropdown.active:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        padding: 0.75rem 2rem;
    }
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    border: none;
    background: transparent;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: calc(36vh + 1cm);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4) 0%, rgba(14, 165, 233, 0.4) 50%, rgba(251, 146, 60, 0.4) 100%),
                url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80') center 72%/100% auto no-repeat;
    color: white;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    background-attachment: scroll;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s ease-in-out infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    padding: 2.1rem 1rem 1rem;
    max-width: 760px;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.3vw, 3.4rem);
    margin-bottom: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.15;
    white-space: nowrap;
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-295px);
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    padding: 1rem 2.3rem;
    font-size: 1.05rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: -2.3rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
    background: var(--bg-color);
}

.section:nth-child(even) {
    background: var(--bg-light);
}

#vouchers {
    margin-top: 0;
    padding-top: 2rem;
    scroll-margin-top: 70px;
}

#vouchers .vouchers-grid {
    margin-top: 0;
}

#vouchers .voucher-amount {
    font-size: 1.3rem;
    line-height: 1.25;
}

#how-it-works {
    padding-top: 3rem;
    scroll-margin-top: 90px;
}

#contact {
    padding-top: 3rem;
}

#about {
    background: var(--bg-color) !important;
    padding-top: 8rem;
    margin-top: -2rem;
}

#about h2,
#about p {
    color: var(--text-color);
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-color);
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section p {
    font-size: 1.15rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* How It Works */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.step-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Vouchers */
.vouchers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.voucher-card-link {
    display: flex;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.voucher-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.voucher-icon-container {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    z-index: 1;
    opacity: 0.15;
}

.voucher-icon {
    width: 100%;
    height: 100%;
}

/* Karta z tłem obrazu */
.voucher-card-with-bg {
    background-image: url('images/oferta-dnia.jpg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.voucher-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    z-index: 1;
}

.voucher-card-with-bg .voucher-icon-container {
    display: none;
}

.voucher-card-with-bg .voucher-amount,
.voucher-card-with-bg .voucher-description,
.voucher-card-with-bg .voucher-button {
    position: relative;
    z-index: 2;
}

.voucher-card-with-bg .voucher-amount {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.voucher-card-with-bg .voucher-description h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg .voucher-description > p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg .voucher-features li {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg .voucher-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg .voucher-button:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Karta "Podróż dopasowana do Ciebie" z tłem obrazu */
.voucher-card-with-bg-2 {
    background-image: url('images/wakacje-dla-ciebie.jpg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.voucher-card-with-bg-2 .voucher-icon-container {
    display: none;
}

.voucher-card-with-bg-2 .voucher-amount,
.voucher-card-with-bg-2 .voucher-description,
.voucher-card-with-bg-2 .voucher-button {
    position: relative;
    z-index: 2;
}

.voucher-card-with-bg-2 .voucher-amount {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.voucher-card-with-bg-2 .voucher-description h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-2 .voucher-description > p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-2 .voucher-features li {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-2 .voucher-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-2 .voucher-button:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Karta "Loty" z tłem obrazu */
.voucher-card-with-bg-3 {
    background-image: url('images/loty.jpg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.voucher-card-with-bg-3 .voucher-icon-container {
    display: none;
}

.voucher-card-with-bg-3 .voucher-amount,
.voucher-card-with-bg-3 .voucher-description,
.voucher-card-with-bg-3 .voucher-button {
    position: relative;
    z-index: 2;
}

.voucher-card-with-bg-3 .voucher-amount {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.voucher-card-with-bg-3 .voucher-description h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-3 .voucher-description > p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-3 .voucher-features li {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-3 .voucher-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-3 .voucher-button:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Karta "Noclegi" z tłem obrazu */
.voucher-card-with-bg-4 {
    background-image: url('images/noclegi.jpg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.voucher-card-with-bg-4 .voucher-icon-container {
    display: none;
}

.voucher-card-with-bg-4 .voucher-amount,
.voucher-card-with-bg-4 .voucher-description,
.voucher-card-with-bg-4 .voucher-button {
    position: relative;
    z-index: 2;
}

.voucher-card-with-bg-4 .voucher-amount {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.voucher-card-with-bg-4 .voucher-description h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-4 .voucher-description > p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-4 .voucher-features li {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-4 .voucher-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-4 .voucher-button:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.voucher-card-with-bg-5 {
    background-image: url('images/city-break.jpg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.voucher-card-with-bg-5 .voucher-icon-container {
    display: none;
}

.voucher-card-with-bg-5 .voucher-amount,
.voucher-card-with-bg-5 .voucher-description,
.voucher-card-with-bg-5 .voucher-button {
    position: relative;
    z-index: 2;
}

.voucher-card-with-bg-5 .voucher-amount {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.voucher-card-with-bg-5 .voucher-description h3 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-5 .voucher-description > p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-5 .voucher-features li {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-5 .voucher-button {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.voucher-card-with-bg-5 .voucher-button:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.voucher-card:nth-child(2) .voucher-icon-container,
.voucher-card:nth-child(3) .voucher-icon-container,
.voucher-card:nth-child(4) .voucher-icon-container {
    opacity: 1;
}

.voucher-card:nth-child(3) .voucher-icon-container .voucher-icon {
    animation: planeFly 3s ease-in-out infinite;
}

@keyframes planeFly {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(5px) rotate(-5deg);
    }
    75% {
        transform: translateX(-5px) rotate(5deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.voucher-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.voucher-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.voucher-amount {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.voucher-description {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 200px;
    justify-content: center;
}

.voucher-description h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
    text-align: center;
}

.voucher-description > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.voucher-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.voucher-features li {
    padding: 0.35rem 0;
    color: var(--text-color);
    font-size: 0.85rem;
}

.voucher-button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 1.5rem 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    text-align: center;
}

.voucher-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.voucher-button:active {
    transform: translateY(0);
}

/* Request Form */
.request-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.request-form input,
.request-form textarea {
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-color);
    width: 100%;
}

.request-form input[type="date"] {
    color: var(--text-light);
}

.request-form input[type="date"]:not(:placeholder-shown) {
    color: var(--text-color);
}

.request-form input:focus,
.request-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.request-form input::placeholder,
.request-form textarea::placeholder {
    color: var(--text-light);
}

/* Contact Form */
.contact {
    background: var(--bg-light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.contact-form-status {
    margin: 0;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.contact-form-status--success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.contact-form-status--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.submit-button {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 400px;
    height: 400px;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.submit-button:active {
    transform: translateY(-1px) scale(1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 1;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        align-items: center;
        background-size: cover;
        background-position: center 40%;
    }

    .hero-content {
        padding: 2.5rem 1.25rem;
    }

    .hero h1 {
        font-size: clamp(1.4rem, 5.5vw, 2.25rem);
        white-space: normal;
        transform: none;
        line-height: 1.25;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 1.5rem;
    }

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

    .section h2 {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .voucher-card.featured {
        transform: scale(1);
    }

    .vouchers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .voucher-amount {
        font-size: 1.75rem;
        padding: 1.25rem 1rem;
    }
    
    .voucher-description {
        padding: 1.25rem;
    }
    
    .voucher-description h3 {
        font-size: 1.1rem;
    }
    
    .voucher-description > p {
        font-size: 0.85rem;
    }
    
    .voucher-features li {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }
    
    .voucher-button {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
        margin: 0 1.25rem 1.25rem;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .search-box {
        width: calc(100vw - 40px);
        right: -20px;
    }

    .search-container {
        margin-left: 0.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 1rem;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer p {
        text-align: center;
    }
}

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

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section h2 {
        font-size: 1.75rem;
    }
    
    .vouchers-grid {
        grid-template-columns: 1fr;
    }
}

/* Live Chat Widget */
.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: chatPulse 2s ease-in-out infinite;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.6);
}

.chat-toggle svg {
    width: 24px;
    height: 24px;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid white;
}

.chat-toggle.hidden {
    display: none;
}

@keyframes chatPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 99, 235, 0.6);
    }
}

.chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 500px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    z-index: 999;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-widget.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.chat-status {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg-light);
}

.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 75%;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 18px;
    word-wrap: break-word;
}

.chat-message.bot .message-content {
    background: white;
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.message-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    padding: 0 0.5rem;
}

.chat-input-container {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--border-color);
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: var(--primary-color);
}

.chat-send {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.chat-send:active {
    transform: scale(0.95);
}

/* Scrollbar styling for chat messages */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

@media (max-width: 480px) {
    .chat-widget {
        width: calc(100vw - 20px);
        right: 10px;
        bottom: 80px;
        height: calc(100vh - 100px);
        max-height: 500px;
    }
    
    .chat-toggle {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-heading {
    margin: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: var(--bg-color);
    transition: background 0.3s ease;
    border: none;
    font: inherit;
    text-align: left;
    color: inherit;
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    margin-left: 1rem;
    min-width: 24px;
    text-align: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.25rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Regulamin Styles */
.regulamin {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.regulamin section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.regulamin section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.regulamin h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

.regulamin p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.regulamin ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.regulamin li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.regulamin strong {
    color: var(--text-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .regulamin {
        padding: 1.5rem;
    }
    
    .regulamin h2 {
        font-size: 1.25rem;
    }
    
    .regulamin p,
    .regulamin li {
        font-size: 0.95rem;
    }
}

/* Service Pages Styles */
.voucher-card-link:hover .voucher-card {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 80px;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.service-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.service-details {
    padding: 4rem 0;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.service-main-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-main-content h3 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-refund-list {
    margin: -1rem 0 1.5rem;
    padding-left: 0;
    list-style-position: inside;
}

.service-refund-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features-list li {
    padding: 0.25rem 0;
    font-family: inherit;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    border-bottom: none;
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 1.5rem 0;
}

.service-steps li {
    counter-increment: step-counter;
    padding: 1.5rem 0 1.5rem 3.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.service-steps li:last-child {
    border-bottom: none;
}

.service-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.service-info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 2px solid var(--border-color);
}

.service-info-box p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-info-box p:last-child {
    margin-bottom: 0;
}

.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.service-card-summary {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.service-card-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
}

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

.summary-item span {
    color: var(--text-light);
}

.summary-item strong {
    color: var(--text-color);
    font-size: 1.1rem;
}

.service-buy-button {
    cursor: pointer;
}

.service-card-summary .voucher-button {
    margin: 1rem 0 0;
}

.back-link:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-price {
        font-size: 2.5rem;
    }
}

/* Modal z formularzem podróży */
.travel-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.travel-form-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.travel-form-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.travel-form-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.travel-form-close:hover {
    background: var(--bg-light);
    color: var(--text-color);
}

.travel-form-modal-content h2 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.75rem;
    text-align: center;
}

#travelForm {
    margin-top: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input:disabled,
.form-group textarea:disabled,
.form-group select:disabled {
    background-color: var(--bg-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
    vertical-align: middle;
}

.checkbox-label span {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    display: inline-block;
    vertical-align: middle;
}

.radio-options {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.radio-label {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0 !important;
    cursor: pointer;
    font-weight: normal !important;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.radio-label span {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.btn-secondary {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--border-color);
}

.form-actions .voucher-button {
    flex: 1;
    margin: 0;
}

.form-actions .voucher-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-light);
    color: var(--text-light);
}

.form-section {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.2s ease;
}

.form-section-title:hover {
    background-color: var(--bg-light);
}

.form-section-title .section-toggle {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.form-section-title.collapsed .section-toggle {
    transform: rotate(-90deg);
}

.form-section-content {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1rem 1.5rem 1rem;
}

.form-section.collapsed .form-section-content {
    max-height: 0;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .travel-form-modal-content {
        padding: 1.5rem;
        max-height: 95vh;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
}

/* About Us Section Styles */
.about-us {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.75;
}

.about-us h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-us p {
    margin-bottom: 1.4rem;
    font-size: 1.15rem;
}

.about-us ul {
    margin: 1rem 0 1.5rem 1rem;
    padding-left: 1rem;
}

.about-us li {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}

.about-us strong {
    color: #1a1a1a;
    font-weight: 600;
}

.about-us em {
    color: #555;
}

.about-us .ending {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 2rem;
}

.about-us .ending strong {
    color: #1abc9c;
}

@media (max-width: 768px) {
    .about-us {
        padding: 1.5rem;
    }
    .about-us p,
    .about-us li {
        font-size: 1.05rem;
    }
    .about-us h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 1.2rem;
    }
    .about-us p,
    .about-us li {
        font-size: 1rem;
    }
    .about-us h2 {
        font-size: 1.5rem;
    }
}

/* Reisevorschlag des Tages – Angebotsliste (2 pro Zeile, Bild links) */
.daily-offers-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
    margin: 0 auto;
}

.daily-offer-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: white;
    border-radius: 18px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-width: 0;
    min-height: 200px;
}

.daily-offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.35);
}

.daily-offer-image {
    flex: 0 0 38%;
    max-width: 200px;
    min-width: 120px;
    min-height: 200px;
    background: var(--bg-light);
}

.daily-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.daily-offer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 1rem 1.1rem;
    gap: 0.45rem;
    min-width: 0;
    font-family: inherit;
}

.daily-offer-destination {
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
}

.daily-offer-travel-date {
    text-align: center;
    margin: 0.15rem 0 0.5rem;
    padding: 0.65rem 0.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08));
    border-radius: 10px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.daily-offer-travel-date-value {
    display: block;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.daily-offer-details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.daily-offer-details li {
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.daily-offer-emoji {
    flex-shrink: 0;
    width: 1.25rem;
    text-align: center;
    font-size: 0.95rem;
}

.daily-offer-cta {
    display: inline-block;
    align-self: center;
    margin-top: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.daily-offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: white;
}

@media (max-width: 900px) {
    .daily-offers-list {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

    .daily-offer-image {
        flex: 0 0 200px;
        max-width: none;
    }

    .daily-offer-destination {
        font-size: 1.15rem;
    }

    .daily-offer-details li {
        font-size: 1rem;
    }

    .daily-offer-cta {
        font-size: 0.88rem;
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .daily-offer-card {
        flex-direction: column;
        min-height: 0;
    }

    .daily-offer-image {
        flex: none;
        width: 100%;
        max-width: none;
        min-width: 0;
        height: 180px;
        min-height: 0;
    }
}

/* Angebot – Detailseite */
.angebot-reise-id {
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px dashed rgba(37, 99, 235, 0.35);
}

.angebot-reise-id-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
    line-height: 1.35;
}

.angebot-reise-id-value {
    display: block;
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    color: var(--text-color);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    letter-spacing: 0.02em;
}

.offer-blocked-panel .summary-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0.25rem;
}

.offer-blocked-notice {
    margin-top: 1.25rem;
    padding: 1.15rem 1.2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.offer-blocked-notice-label {
    margin: 0 0 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-color);
}

.offer-blocked-notice-text {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--text-color);
}

.offer-blocked-notice-hint {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

.offer-blocked-cta {
    display: block;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.85rem 1.25rem;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-blocked-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    color: white;
}

.offer-blocked-back {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.offer-rid-summary strong {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.95rem;
    word-break: break-all;
}

.angebot-travel-date {
    text-align: center;
    margin-bottom: 1.75rem;
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08));
    border-radius: 14px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.angebot-travel-date-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.angebot-travel-date-value {
    display: block;
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.angebot-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.angebot-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.angebot-meta-item span:first-child {
    font-size: 1.35rem;
    line-height: 1;
}

.angebot-meta-item strong {
    color: var(--text-color);
}

@media (max-width: 600px) {
    .angebot-meta-grid {
        grid-template-columns: 1fr;
    }
}

body.has-daily-offers-hinweis {
    padding-bottom: 5.5rem;
}

.daily-offers-hinweis {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.1);
}

.daily-offers-hinweis-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
}

.daily-offers-hinweis p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-light);
    text-align: center;
}

.daily-offers-hinweis strong {
    color: var(--text-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    body.has-daily-offers-hinweis {
        padding-bottom: 6.5rem;
    }

    .daily-offers-hinweis-inner {
        padding: 0.85rem 1rem;
    }

    .daily-offers-hinweis p {
        font-size: 0.85rem;
        text-align: left;
    }
}