    /* ===== CSS Reset & Variables ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        /* Color System */
        --background: hsl(222, 84%, 4.9%);
        --foreground: hsl(210, 40%, 98%);
        --card: hsl(220, 13%, 18%);
        --card-foreground: hsl(210, 40%, 98%);
        --primary: hsl(200, 100%, 50%);
        --primary-foreground: hsl(222, 84%, 4.9%);
        --primary-glow: hsl(200, 100%, 70%);
        --secondary: hsl(215, 25%, 27%);
        --secondary-foreground: hsl(210, 40%, 98%);
        --muted: hsl(215, 25%, 27%);
        --muted-foreground: hsl(215, 20.2%, 65.1%);
        --accent: hsl(340, 85%, 55%);
        --accent-foreground: hsl(210, 40%, 98%);
        --accent-glow: hsl(340, 85%, 75%);
        --border: hsl(215, 25%, 27%);
        /* Brand Colors */
        --energy-blue: hsl(200, 100%, 50%);
        --energy-cyan: hsl(180, 100%, 50%);
        --energy-purple: hsl(270, 100%, 70%);
        --energy-pink: hsl(340, 85%, 55%);
        --energy-green: hsl(120, 100%, 50%);
        --energy-gold: hsl(45, 100%, 50%);
        /* Spacing */
        --radius: 0.75rem;
        --radius-lg: 1rem;
        --radius-sm: 0.5rem;
        /* Transitions */
        --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        /* Shadows */
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
        --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    }

    /* ===== Base Styles ===== */
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        background-color: var(--background);
        color: var(--foreground);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    /* ===== Typography ===== */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: 700;
        line-height: 1.2;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    /* ===== Utilities ===== */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 1rem;
        }
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius);
        font-weight: 600;
        text-decoration: none;
        transition: all var(--transition-base);
        border: 1px solid transparent;
        cursor: pointer;
        font-size: 0.875rem;
        position: relative;
        overflow: hidden;
        background: none;
    }

    .btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s;
    }

    .btn:hover::before {
        transform: translateX(100%);
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--energy-blue), var(--energy-cyan));
        color: white;
        box-shadow: 0 0 20px hsla(200, 100%, 50%, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 30px hsla(200, 100%, 50%, 0.5);
    }

    .btn-outline {
        border: 1px solid hsla(210, 40%, 98%, 0.3);
        color: var(--foreground);
        background: transparent;
    }

    .btn-outline:hover {
        background: hsla(210, 40%, 98%, 0.1);
        border-color: var(--primary);
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .btn-block {
        width: 100%;
    }

    .btn-icon {
        margin-right: 0.5rem;
    }

    /* Cards */
    .card {
        background: hsla(220, 13%, 18%, 0.5);
        backdrop-filter: blur(10px);
        border: 1px solid hsla(215, 25%, 27%, 0.3);
        border-radius: var(--radius);
        padding: 1.5rem;
        transition: all var(--transition-base);
    }

    .card:hover {
        transform: translateY(-4px);
        border-color: var(--primary);
        box-shadow: 0 20px 40px hsla(200, 100%, 50%, 0.1);
    }

    /* Gradient Text */
    .gradient-text {
        background: linear-gradient(135deg, var(--energy-blue), var(--energy-cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* ===== Mobile Top Bar ===== */
    .mobile-top-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: rgba(34, 39, 46, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        z-index: 1100;
        /* Hide on desktop */
        display: none;
    }

    .mobile-top-bar-content {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .mobile-top-bar .logo-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--energy-blue), var(--energy-cyan));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-top-bar .logo-text {
        font-weight: 700;
        font-size: 1.25rem;
        color: var(--foreground);
    }

    /* Show mobile top bar only on mobile */
    @media (max-width: 1024px) {
        .mobile-top-bar {
            display: flex;
        }

        /* Adjust body padding to account for fixed top bar */
        body {
            padding-top: 60px;
        }

        /* Remove any margin or padding from html and body that might cause issues */
        html,
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
    }

    /* ===== Layout ===== */
    /* Sidebar */
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: rgba(34, 39, 46, 0.95);
        backdrop-filter: blur(20px);
        border-right: 1px solid var(--border);
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform var(--transition-base);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-content {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .sidebar-header {
        padding: 2rem 1.5rem;
        border-bottom: 1px solid var(--border);
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--energy-blue), var(--energy-cyan));
        display: flex;
        align-items: center;
        justify-content: center;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(0, 191, 255, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(0, 191, 255, 0);
        }
    }

    .logo-text {
        font-weight: 700;
        font-size: 1.25rem;
    }

    .sidebar-nav {
        flex: 1;
        padding: 2rem 1rem;
        overflow-y: auto;
    }

    .nav-item {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.875rem 1rem;
        margin-bottom: 0.5rem;
        border-radius: var(--radius);
        color: var(--muted-foreground);
        text-decoration: none;
        transition: all var(--transition-base);
        font-size: 0.875rem;
        position: relative;
    }

    .nav-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 0;
        background: var(--primary);
        transition: height var(--transition-base);
        border-radius: 0 3px 3px 0;
    }

    .nav-item:hover,
    .nav-item.active {
        color: var(--primary);
        background: hsla(200, 100%, 50%, 0.1);
    }

    .nav-item.active::before {
        height: 70%;
    }

    .nav-icon {
        width: 20px;
        height: 20px;
        margin-right: 0.75rem;
        stroke-width: 2;
    }

    .sidebar-footer {
        padding: 1.5rem;
        border-top: 1px solid var(--border);
    }

    .social-links {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .social-link {
        color: var(--muted-foreground);
        transition: all var(--transition-base);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: hsla(215, 25%, 27%, 0.5);
    }

    .social-link:hover {
        color: var(--primary);
        background: hsla(200, 100%, 50%, 0.1);
        transform: translateY(-2px);
    }

    .copyright {
        font-size: 0.75rem;
        color: var(--muted-foreground);
        text-align: center;
    }

    /* On mobile, we want the sidebar to cover the entire screen and be below the top bar */
    @media (max-width: 1024px) {
        .sidebar {
            width: 100%;
            max-width: 320px;
            border-right: none;
            top: 60px;
            /* Position below the mobile top bar */
            height: calc(100vh - 60px);
            /* Adjust height to account for top bar */
        }

        /* Completely hide sidebar header on mobile */
        .sidebar-header {
            display: none !important;
            height: 0 !important;
            padding: 0 !important;
            margin: 0 !important;
            overflow: hidden !important;
            border: none !important;
        }

        /* Adjust sidebar nav padding to compensate for hidden header */
        .sidebar-nav {
            padding-top: 1rem;
        }

        /* Adjust sidebar footer for mobile */
        .sidebar-footer {
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }
    }

    /* Main Content */
    .main-content {
        margin-left: 0;
        transition: margin-left var(--transition-base);
    }

    @media (min-width: 1025px) {
        .sidebar {
            transform: translateX(0);
        }

        .main-content {
            margin-left: 280px;
        }

        .mobile-top-bar {
            display: none;
        }

        .mobile-menu-btn {
            display: none !important;
        }
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        position: relative;
        top: auto;
        left: auto;
        z-index: 1101;
        background: transparent;
        border: none;
        color: var(--foreground);
        padding: 0.75rem;
        border-radius: var(--radius);
        cursor: pointer;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-base);
    }

    .mobile-menu-btn:hover {
        background: var(--muted);
        border-color: var(--primary);
        transform: scale(1.05);
    }

    .hamburger-icon {
        width: 24px;
        height: 18px;
        position: relative;
        transform: rotate(0deg);
        transition: .5s ease-in-out;
    }

    .hamburger-icon span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--foreground);
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
    }

    .hamburger-icon span:nth-child(1) {
        top: 0px;
    }

    .hamburger-icon span:nth-child(2) {
        top: 8px;
    }

    .hamburger-icon span:nth-child(3) {
        top: 16px;
    }

    .mobile-menu-btn.open .hamburger-icon span:nth-child(1) {
        top: 8px;
        transform: rotate(135deg);
    }

    .mobile-menu-btn.open .hamburger-icon span:nth-child(2) {
        opacity: 0;
        left: -60px;
    }

    .mobile-menu-btn.open .hamburger-icon span:nth-child(3) {
        top: 8px;
        transform: rotate(-135deg);
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: var(--background);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--muted);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }

    @media (max-width: 480px) {
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            padding-top: 4rem;
            /* Space for mobile menu button */
            padding-bottom: 2rem;
        }

        .hero-buttons {
            flex-direction: column;
            gap: 0.75rem;
        }

        .hero-buttons .btn {
            width: 100%;
            justify-content: center;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            text-align: center;
        }

        .hero-stat-number {
            font-size: 1.25rem;
        }

        .hero-stat-label {
            font-size: 0.75rem;
        }
    }

    /* ===== Hero Section ===== */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
        display: flex;
        align-items: center;
        margin-top: 0;
    }

    .hero {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 1;
        touch-action: pan-y;
        /* Pozwala na vertical scroll ale blokuje horizontal */
    }

    .hero-image {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .hero-image.active {
        opacity: 1;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.7) contrast(1.1);
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right,
                hsla(0, 0%, 0%, 0.8) 0%,
                hsla(0, 0%, 0%, 0.5) 50%,
                transparent 100%);
    }

    .hero-content {
        position: relative;
        z-index: 10;
        width: 100%;
    }

    .hero-text-wrapper {
        max-width: 800px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        padding: 0.5rem 1rem;
        background: hsla(200, 100%, 50%, 0.1);
        border: 1px solid hsla(200, 100%, 50%, 0.3);
        border-radius: var(--radius-sm);
    }

    .hero-badge-text {
        color: var(--primary);
        font-weight: 600;
        font-size: 0.875rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 900;
        line-height: 0.9;
        margin-bottom: 2rem;
    }

    .hero-title-line {
        display: block;
    }

    @media (max-width: 768px) {
        .hero::after {
            content: '';
            position: absolute;
            bottom: 8rem;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            z-index: 21;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: clamp(2.5rem, 10vw, 4rem);
        }
    }

    .hero-text-animate {
        opacity: 0;
        transform: translateY(20px);
        transition: all var(--transition-slow);
    }

    .hero-text-animate.active {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-subtitle {
        font-size: clamp(1.25rem, 3vw, 2rem);
        color: hsla(210, 40%, 98%, 0.9);
        margin-bottom: 1rem;
        font-weight: 300;
    }

    .hero-description {
        font-size: 1.125rem;
        color: hsla(210, 40%, 98%, 0.7);
        margin-bottom: 2rem;
        max-width: 600px;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }

    @media (max-width: 480px) {
        .hero-buttons {
            flex-direction: column;
        }

        .hero-buttons .btn {
            width: 100%;
        }
    }

    .hero-stats {
        display: flex;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        display: block;
    }

    .hero-stat-label {
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .hero-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        background: hsla(0, 0%, 0%, 0.5);
        backdrop-filter: blur(10px);
        border: 1px solid hsla(255, 255, 255, 0.1);
        color: white;
        padding: 0.75rem;
        border-radius: 50%;
        cursor: pointer;
        transition: all var(--transition-base);
        align-items: center;
        justify-content: center;
        display: none;
        /* Domyślnie ukryte */
    }

    .hero-nav:hover {
        background: hsla(0, 0%, 0%, 0.7);
        transform: translateY(-50%) scale(1.1);
    }

    .hero-nav.prev {
        left: 2rem;
    }

    .hero-nav.next {
        right: 2rem;
    }

    /* Pokaż strzałki tylko na ekranach większych niż 1633px */
    @media (min-width: 1633px) {
        .hero-nav {
            display: flex;
        }
    }

    @media (max-width: 480px) {
        .hero-nav {
            display: none !important;
        }
    }

    @media (max-width: 768px) {
        .hero-nav {
            padding: 0.5rem;
            background: hsla(0, 0%, 0%, 0.3);
            top: auto;
            bottom: 6rem;
            transform: none;
        }

        .hero-nav:hover {
            transform: scale(1.05);
        }

        .hero-nav svg {
            width: 20px;
            height: 20px;
        }

        .hero-nav.prev {
            left: 1rem;
        }

        .hero-nav.next {
            right: 1rem;
        }
    }

    .hero-indicators {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
        display: flex;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        border-radius: 2rem;
    }

    .hero-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all var(--transition-base);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .hero-indicator:hover {
        background: rgba(255, 255, 255, 0.5);
        transform: scale(1.2);
    }

    .hero-indicator.active {
        background: var(--primary);
        transform: scale(1.5);
        box-shadow: 0 0 20px hsla(200, 100%, 50%, 0.5);
        border-color: var(--primary);
    }

    /* Animations */
    .slide-in-left {
        animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .fade-in-up {
        animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        animation-delay: 0.2s;
        opacity: 0;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-60px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ===== Sections ===== */
    .section {
        padding: 5rem 0;
        position: relative;
        margin-top: 0;
    }

    @media (max-width: 768px) {
        .section {
            padding: 3rem 0;
        }
    }

    .section-gallery {
        background: linear-gradient(180deg, hsla(215, 25%, 27%, 0.1) 0%, var(--background) 100%);
    }

    .section-events {
        background: linear-gradient(180deg, var(--background) 0%, hsla(215, 25%, 27%, 0.1) 100%);
    }

    .section-about {
        background: linear-gradient(180deg, hsla(215, 25%, 27%, 0.1) 0%, var(--background) 100%);
    }

    .section-location {
        background: linear-gradient(180deg, var(--background) 0%, hsla(215, 25%, 27%, 0.1) 100%);
    }

    .section-contact {
        background: linear-gradient(180deg, hsla(215, 25%, 27%, 0.1) 0%, var(--background) 100%);
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    @media (max-width: 768px) {
        .section-header {
            margin-bottom: 3rem;
        }
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--primary);
        font-weight: 600;
        font-size: 0.875rem;
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        position: relative;
    }

    .section-badge::before,
    .section-badge::after {
        content: '';
        position: absolute;
        height: 1px;
        width: 50px;
        background: linear-gradient(to right, transparent, var(--primary));
        top: 50%;
        transform: translateY(-50%);
    }

    .section-badge::before {
        right: 100%;
        margin-right: 1rem;
        background: linear-gradient(to left, var(--primary), transparent);
    }

    .section-badge::after {
        left: 100%;
        margin-left: 1rem;
    }

    .section-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 900;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .section-description {
        font-size: 1.125rem;
        color: var(--muted-foreground);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }

    /* Scroll Animation Observer */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }

    /* Grid Systems */
    .grid {
        display: grid;
        gap: 2rem;
    }

    .grid-2 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    @media (max-width: 768px) {
        .grid {
            gap: 1.5rem;
        }
    }

    /* ===== Gallery Section ===== */
    .gallery-filters {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.5rem 1.5rem;
        border: 1px solid var(--border);
        background: transparent;
        color: var(--muted-foreground);
        border-radius: var(--radius);
        cursor: pointer;
        transition: all var(--transition-base);
        font-size: 0.875rem;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }

    .filter-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--primary);
        transform: translateY(100%);
        transition: transform var(--transition-base);
        z-index: -1;
    }

    .filter-btn:hover::before,
    .filter-btn.active::before {
        transform: translateY(0);
    }

    .filter-btn:hover,
    .filter-btn.active {
        color: white;
        border-color: var(--primary);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    @media (max-width: 768px) {
        .gallery-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    .gallery-item {
        position: relative;
        aspect-ratio: 1;
        overflow: hidden;
        border-radius: var(--radius);
        cursor: pointer;
        background: var(--card);
        transition: all var(--transition-base);
    }

    .gallery-item.hidden {
        display: none;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .gallery-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.3);
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
                hsla(0, 0%, 0%, 0.9) 0%,
                hsla(0, 0%, 0%, 0.4) 50%,
                transparent 100%);
        opacity: 0;
        transition: opacity var(--transition-base);
        display: flex;
        align-items: flex-end;
        padding: 1.5rem;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-info {
        transform: translateY(20px);
        transition: transform var(--transition-base);
    }

    .gallery-item:hover .gallery-info {
        transform: translateY(0);
    }

    .gallery-category {
        font-size: 0.75rem;
        color: var(--primary);
        font-weight: 500;
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .gallery-title {
        color: white;
        font-weight: 600;
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }

    .gallery-desc {
        color: hsla(255, 255, 255, 0.8);
        font-size: 0.875rem;
    }

    /* ===== Events Section ===== */
    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    @media (max-width: 768px) {
        .events-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
    }

    .event-card {
        position: relative;
        overflow: visible;
        display: flex;
        flex-direction: column;
        height: 100%;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 2rem;
        transition: all var(--transition-base);
    }

    .event-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--energy-blue), var(--energy-cyan), var(--energy-purple));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition-base);
    }

    .event-card:hover::before {
        transform: scaleX(1);
    }

    .event-card:hover {
        transform: translateY(-8px);
        border-color: transparent;
        box-shadow:
            0 20px 40px hsla(200, 100%, 50%, 0.1),
            0 0 0 1px hsla(200, 100%, 50%, 0.3);
    }

    .event-badge {
        position: absolute;
        top: -0.5rem;
        right: 1rem;
        background: linear-gradient(135deg, var(--energy-blue), var(--energy-cyan));
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: var(--radius-sm);
        font-size: 0.675rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .event-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .event-icon {
        padding: 0.875rem;
        border-radius: var(--radius);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        position: relative;
        overflow: hidden;
    }

    .event-icon::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s;
    }

    .event-card:hover .event-icon::after {
        transform: translateX(100%);
    }

    .event-capacity {
        text-align: right;
    }

    .event-capacity-label {
        font-size: 0.75rem;
        color: var(--muted-foreground);
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .event-capacity-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
    }

    .event-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .event-description {
        font-size: 0.875rem;
        color: var(--muted-foreground);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .event-features {
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .feature-item svg {
        color: var(--primary);
        flex-shrink: 0;
        width: 16px;
        height: 16px;
    }

    .feature-item:last-child {
        margin-bottom: 0;
    }

    .event-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
        margin-top: auto;
    }

    .event-price {
        display: flex;
        align-items: baseline;
        gap: 0.25rem;
    }

    .event-price-label {
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .event-price-amount {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
    }

    .event-price-unit {
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    /* ===== About Section ===== */
    .stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
        margin: 4rem 0;
        padding: 3rem 0;
        position: relative;
    }

    .stats::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
        height: 1px;
        top: 0;
    }

    .stats::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, var(--primary), transparent);
        height: 1px;
        bottom: 0;
        top: auto;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 900;
        color: var(--primary);
        margin-bottom: 0.5rem;
        display: block;
    }

    .counter {
        display: inline-block;
    }

    .stat-label {
        font-size: 0.875rem;
        color: var(--muted-foreground);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    @media (max-width: 768px) {
        .features-grid {
            grid-template-columns: 1fr;
        }
    }

    .feature-card {
        text-align: center;
        padding: 2rem;
        background: var(--card);
        border-radius: var(--radius);
        border: 1px solid var(--border);
        transition: all var(--transition-base);
        position: relative;
        overflow: hidden;
    }

    /* Style dla klikalnego kafelka Wsparcie 24/7 */
    .feature-card-link {
        display: block;
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 16px;
        overflow: hidden;
    }

    .feature-card-link:hover {
        transform: translateY(-5px);
    }

    .feature-card-link:hover .feature-card {
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .feature-card-link .feature-card {
        cursor: pointer;
        transition: background 0.3s ease, box-shadow 0.3s ease;
    }

    /* Dodaj ikonę Facebooka do kafelka */
    .feature-card-link .feature-card::after {
        content: '';
        position: absolute;
        top: 15px;
        right: 15px;
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
        background-size: contain;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .feature-card-link:hover .feature-card::after {
        opacity: 1;
    }

    /* Responsywność */
    @media (max-width: 768px) {
        .feature-card-link:hover {
            transform: none;
        }

        .feature-card-link .feature-card::after {
            width: 20px;
            height: 20px;
        }
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, var(--primary), transparent);
        opacity: 0.1;
        border-radius: 50%;
        transition: all var(--transition-base);
    }

    .feature-card:hover::before {
        width: 200px;
        height: 200px;
        opacity: 0.2;
    }

    .feature-card:hover {
        transform: translateY(-4px);
        border-color: var(--primary);
    }

    .feature-card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
        padding: 1rem;
        border-radius: var(--radius);
        background: hsla(200, 100%, 50%, 0.1);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
    }

    .feature-card-title {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        position: relative;
        z-index: 1;
    }

    .feature-card-desc {
        font-size: 0.875rem;
        color: var(--muted-foreground);
        line-height: 1.6;
        position: relative;
        z-index: 1;
    }

    .about-cta {
        text-align: center;
        padding: 3rem;
        background: linear-gradient(135deg, hsla(200, 100%, 50%, 0.1), hsla(180, 100%, 50%, 0.1));
        border-radius: var(--radius-lg);
        border: 1px solid hsla(200, 100%, 50%, 0.3);
    }

    .about-cta-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .about-cta-desc {
        font-size: 1.125rem;
        color: var(--muted-foreground);
        margin-bottom: 2rem;
    }

/* ===== Location Section - Kompletnie nowa implementacja ===== */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .location-content {
        gap: 2.5rem;
        padding: 0 2rem;
    }
}

/* KOMPLETNIE NOWY LAYOUT DLA DESKTOP - resetowanie wszystkiego */
@media (min-width: 1024px) {
    .location-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 2rem !important;
        max-width: 1400px !important;
        padding: 0 2rem !important;
        flex-direction: unset !important;
    }
    
    .map-container {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    
    .location-info {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .transport-options {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    
    .nearby-places {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }
}

@media (min-width: 1400px) {
    .location-content {
        max-width: 1600px !important;
        gap: 2.5rem !important;
    }
}

/* Mapa - górny lewy róg */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px hsla(0, 0%, 0%, 0.15);
    position: relative;
    background: var(--card);
    width: 100%;
    height: 350px;
    min-height: 300px;
}

@media (min-width: 768px) {
    .map-container {
        height: 400px;
        min-height: 350px;
    }
}

@media (min-width: 1024px) {
    .map-container {
        height: 420px;
        min-height: 380px;
    }
}

@media (min-width: 1400px) {
    .map-container {
        height: 450px;
        min-height: 400px;
    }
}

.map-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 1;
}

.map-container:hover::before {
    opacity: 0.5;
}

.map-container iframe {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    border: none;
}

/* Panel z informacjami - górny prawy róg */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .location-info {
        gap: 1.75rem;
    }
}

/* Karta adresu - rozszerzona wersja */
.location-card {
    background: linear-gradient(135deg, var(--energy-blue), var(--energy-cyan));
    color: white;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

@media (min-width: 768px) {
    .location-card {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .location-card {
        padding: 1.75rem;
    }
}

.location-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.location-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.location-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.location-main-info {
    margin-bottom: 1rem;
}

.location-main-info p {
    margin-bottom: 0.25rem;
}

.location-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.location-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.location-quick-facts {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-fact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: all var(--transition-base);
}

.quick-fact:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.quick-fact svg {
    width: 16px;
    height: 16px;
    stroke: var(--energy-cyan);
    stroke-width: 2;
    flex-shrink: 0;
}

.quick-fact span {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.location-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item a {
    color: white;
    font-weight: 500;
    transition: color var(--transition-base);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--energy-cyan);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.contact-item a:hover {
    color: var(--energy-cyan) !important;
    text-decoration: underline !important;
}

.contact-item a:hover::after {
    transform: scaleX(1) !important;
}
/* Opcje transportu - dolny lewy róg */
.transport-options {
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    width: 100%;
}

@media (min-width: 768px) {
    .transport-options {
        padding: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .transport-options {
        padding: 2rem;
    }
}

.transport-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.transport-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-base);
}

.transport-card:hover {
    padding-left: 0.5rem;
}

.transport-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.transport-icon {
    width: 44px;
    height: 44px;
    padding: 0.75rem;
    border-radius: var(--radius);
    background: hsla(200, 100%, 50%, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .transport-icon {
        width: 48px;
        height: 48px;
    }
}

.transport-card:hover .transport-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.transport-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.transport-info p {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.transport-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transport-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.transport-info li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.25rem;
    line-height: 1;
}

/* Miejsca w pobliżu - dolny prawy róg */
.nearby-places {
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    width: 100%;
}

@media (min-width: 768px) {
    .nearby-places {
        padding: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .nearby-places {
        padding: 2rem;
    }
}

.nearby-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.nearby-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 480px) {
    .nearby-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .nearby-grid {
        gap: 1.75rem;
    }
}

.nearby-category h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-size: 1rem;
}

.nearby-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nearby-category li {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.4;
}

.nearby-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
}

/* Dodatkowe poprawki dla sekcji lokalizacji */
@media (max-width: 1023px) {
    .section-location {
        padding: 3rem 0;
    }
}

@media (max-width: 767px) {
    .section-location {
        padding: 2.5rem 0;
    }
    
    .location-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .location-card,
    .transport-options,
    .nearby-places {
        padding: 1.25rem;
    }
    
    .transport-card {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .transport-icon {
        margin: 0 auto;
    }
}

/* Poprawki dla bardzo małych ekranów */
@media (max-width: 380px) {
    .location-card,
    .transport-options,
    .nearby-places {
        padding: 1rem;
    }
    
    .location-card-header h3,
    .transport-title,
    .nearby-title {
        font-size: 1rem;
    }
    
    .transport-icon {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }
}

/* Specjalne poprawki dla ultrawide monitorów */
@media (min-width: 1920px) {
    .location-content {
        max-width: 1800px !important;
        gap: 3rem !important;
    }
    
    .map-container {
        height: 480px;
        min-height: 420px;
    }
    
    .location-info {
        gap: 2rem !important;
    }
}
    /* ===== Contact Section ===== */
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    @media (max-width: 968px) {
        .contact-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    .contact-form-container {
        background: var(--card);
        padding: 2.5rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border);
        position: relative;
        overflow: hidden;
    }

    .contact-form-container::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, var(--energy-blue), var(--energy-cyan), var(--energy-purple), var(--energy-pink));
        opacity: 0;
        transition: opacity var(--transition-base);
        border-radius: var(--radius-lg);
        z-index: -1;
    }

    .contact-form-container:hover::before {
        opacity: 0.3;
    }

    @media (max-width: 480px) {
        .contact-form-container {
            padding: 1.5rem;
        }
    }

    .contact-form-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        font-weight: 700;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    @media (max-width: 480px) {
        .form-row {
            grid-template-columns: 1fr;
        }
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--muted-foreground);
        margin-bottom: 0.5rem;
    }

    .form-input {
        width: 100%;
        padding: 0.75rem 1rem;
        background: hsla(220, 13%, 18%, 0.5);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        color: var(--foreground);
        font-size: 0.875rem;
        transition: all var(--transition-base);
        font-family: inherit;
    }

    .form-input:hover {
        border-color: hsla(200, 100%, 50%, 0.3);
    }

    .form-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px hsla(200, 100%, 50%, 0.1);
        background: hsla(220, 13%, 18%, 0.8);
    }

    .form-input::placeholder {
        color: hsla(215, 20.2%, 65.1%, 0.5);
    }

    .form-textarea {
        min-height: 120px;
        resize: vertical;
        max-height: 300px;
    }

    .form-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        cursor: pointer;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .form-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 0.125rem;
        cursor: pointer;
        accent-color: var(--primary);
    }

    .contact-info-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    @media (max-width: 480px) {
        .contact-cards {
            grid-template-columns: 1fr;
        }
    }

    .contact-card {
        background: var(--card);
        padding: 1.5rem;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        transition: all var(--transition-base);
        position: relative;
        overflow: hidden;
    }

    .contact-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--energy-blue), var(--energy-cyan));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition-base);
    }

    .contact-card:hover::after {
        transform: scaleX(1);
    }

    .contact-card:hover {
        transform: translateY(-4px);
        border-color: var(--primary);
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
        background: hsla(200, 100%, 50%, 0.1);
        color: var(--primary);
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        transition: all var(--transition-base);
    }

    .contact-card:hover .contact-card-icon {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
    }

    .contact-card-content h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .contact-card-content a,
    .contact-card-content p {
        font-size: 0.875rem;
        color: var(--muted-foreground);
        display: block;
        margin-bottom: 0.25rem;
        transition: color var(--transition-base);
    }

    .contact-card-content a:hover {
        color: var(--primary);
    }

    .emergency-card {
        background: linear-gradient(135deg, var(--energy-purple), var(--energy-pink));
        color: white;
        padding: 2.5rem;
        border-radius: var(--radius-lg);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .emergency-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient(45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.05) 10px,
                rgba(255, 255, 255, 0.05) 20px);
        animation: slide 20s linear infinite;
    }

    @keyframes slide {
        from {
            transform: translate(0, 0);
        }

        to {
            transform: translate(50px, 50px);
        }
    }

    .emergency-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        position: relative;
        z-index: 1;
    }

    .emergency-icon svg {
        width: 48px;
        height: 48px;
    }

    .emergency-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
    }

    .emergency-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        opacity: 0.9;
        position: relative;
        z-index: 1;
    }

    .emergency-card .btn {
        position: relative;
        z-index: 1;
    }

    .response-time {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem;
        background: hsla(200, 100%, 50%, 0.1);
        border: 1px solid hsla(200, 100%, 50%, 0.3);
        border-radius: var(--radius);
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .response-time svg {
        color: var(--primary);
    }

    .response-time strong {
        color: var(--primary);
    }

    /* Form validation styles */
    .form-input:invalid:not(:focus):not(:placeholder-shown) {
        border-color: var(--accent);
    }

    .form-input:valid:not(:focus):not(:placeholder-shown) {
        border-color: var(--energy-green);
    }

    /* Loading state for submit button */
    .btn-loading {
        position: relative;
        color: transparent;
    }

    .btn-loading::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        top: 50%;
        left: 50%;
        margin-left: -10px;
        margin-top: -10px;
        border: 2px solid white;
        border-radius: 50%;
        border-top-color: transparent;
        animation: spinner 0.8s linear infinite;
    }

    @keyframes spinner {
        to {
            transform: rotate(360deg);
        }
    }

    /* ===== Footer ===== */
    .footer {
        background: var(--card);
        border-top: 1px solid var(--border);
        margin-top: 5rem;
        position: relative;
        overflow: hidden;
        margin-left: 0;
        transition: margin-left var(--transition-base);
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--energy-blue), var(--energy-cyan), var(--energy-purple), var(--energy-pink));
        animation: gradient-shift 3s ease-in-out infinite;
    }

    @keyframes gradient-shift {

        0%,
        100% {
            transform: translateX(-100%);
        }

        50% {
            transform: translateX(100%);
        }
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 3rem;
        padding: 4rem 0 3rem;
    }

    @media (min-width: 1025px) {
        .footer {
            margin-left: 280px;
        }
    }

    @media (max-width: 968px) {
        .footer-content {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
    }

    @media (max-width: 480px) {
        .footer-content {
            grid-template-columns: 1fr;
        }
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1.25rem;
        font-weight: 700;
    }

    .footer-logo svg {
        width: 32px;
        height: 32px;
        color: var(--primary);
    }

    .footer-desc {
        color: var(--muted-foreground);
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .footer-social {
        display: flex;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        background: hsla(215, 25%, 27%, 0.5);
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted-foreground);
        transition: all var(--transition-base);
    }

    .footer-social a:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-4px);
    }

    .footer h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.75rem;
    }

    .footer h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: var(--primary);
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

    .footer ul li {
        margin-bottom: 0.75rem;
    }

    .footer ul li:last-child {
        margin-bottom: 0;
    }

    .footer ul li a {
        color: var(--muted-foreground);
        font-size: 0.875rem;
        transition: all var(--transition-base);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer ul li a:hover {
        color: var(--primary);
        transform: translateX(4px);
    }

    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--muted-foreground);
        font-size: 0.875rem;
    }

    .footer-contact li svg {
        color: var(--primary);
        flex-shrink: 0;
    }

    .footer-contact li a {
        color: var(--muted-foreground);
        transition: color var(--transition-base);
    }

    .footer-contact li a:hover {
        color: var(--primary);
    }

    .footer-bottom {
        border-top: 1px solid var(--border);
        padding: 2rem 0;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    @media (max-width: 768px) {
        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
        }
    }

    .footer-legal {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 0.875rem;
    }

    .footer-legal a {
        color: var(--muted-foreground);
        transition: color var(--transition-base);
    }

    .footer-legal a:hover {
        color: var(--primary);
    }

    .footer-legal span {
        color: var(--muted-foreground);
        opacity: 0.5;
    }

    /* ===== Back to Top Button ===== */
    .back-to-top {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 48px;
        height: 48px;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all var(--transition-base);
        z-index: 999;
        box-shadow: 0 4px 20px hsla(200, 100%, 50%, 0.3);
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--energy-cyan);
        transform: translateY(-4px);
        box-shadow: 0 6px 30px hsla(200, 100%, 50%, 0.4);
    }

    .back-to-top:active {
        transform: translateY(-2px);
    }

    /* ===== Loading Screen ===== */
    .loading-screen {
        position: fixed;
        inset: 0;
        background: var(--background);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        transition: opacity 0.5s, visibility 0.5s;
    }

    .loading-screen.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .loading-spinner {
        width: 60px;
        height: 60px;
        position: relative;
    }

    .loading-spinner::before,
    .loading-spinner::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 3px solid transparent;
    }

    .loading-spinner::before {
        border-top-color: var(--energy-blue);
        animation: spin 1s linear infinite;
    }

    .loading-spinner::after {
        border-bottom-color: var(--energy-cyan);
        animation: spin 1s linear infinite reverse;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* ===== Utility Classes ===== */
    .text-center {
        text-align: center;
    }

    .mt-1 {
        margin-top: 0.5rem;
    }

    .mt-2 {
        margin-top: 1rem;
    }

    .mt-3 {
        margin-top: 1.5rem;
    }

    .mt-4 {
        margin-top: 2rem;
    }

    .mb-1 {
        margin-bottom: 0.5rem;
    }

    .mb-2 {
        margin-bottom: 1rem;
    }

    .mb-3 {
        margin-bottom: 1.5rem;
    }

    .mb-4 {
        margin-bottom: 2rem;
    }

    .hidden {
        display: none !important;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* ===== Print Styles ===== */
    @media print {

        .sidebar,
        .mobile-menu-btn,
        .back-to-top,
        .hero-nav,
        .hero-indicators,
        .footer-social {
            display: none !important;
        }

        .main-content {
            margin-left: 0 !important;
        }

        .section {
            page-break-inside: avoid;
        }
    }

    /* ===== Custom Selection ===== */
    ::selection {
        background: var(--primary);
        color: white;
    }

    ::-moz-selection {
        background: var(--primary);
        color: white;
    }

    /* ===== Focus Visible ===== */
    :focus-visible {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }

    /* ===== Reduced Motion ===== */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }

    /* Custom number input styling */
    input[type="number"] {
        -moz-appearance: textfield;
        appearance: textfield;
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Custom number input wrapper */
    .number-input-wrapper {
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .number-input-wrapper input {
        padding-right: 2.5rem;
    }

    .number-controls {
        position: absolute;
        right: 1px;
        top: 1px;
        bottom: 1px;
        display: flex;
        flex-direction: column;
        width: 2rem;
    }

    .number-control {
        flex: 1;
        background: var(--muted);
        border: none;
        color: var(--foreground);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-fast);
        font-size: 0.75rem;
    }

    .number-control:first-child {
        border-radius: 0 calc(var(--radius) - 1px) 0 0;
    }

    .number-control:last-child {
        border-radius: 0 0 calc(var(--radius) - 1px) 0;
        border-top: 1px solid var(--border);
    }

    .number-control:hover {
        background: var(--primary);
        color: white;
    }

    .number-control:active {
        transform: scale(0.95);
    }

    /* Swipe hint animation */
    .swipe-hint {
        position: absolute;
        bottom: 7rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 21;
        animation: swipeHint 2s ease-in-out infinite;
        display: none;
    }

    @media (max-width: 480px) {
        .swipe-hint {
            display: block;
        }
    }

    @keyframes swipeHint {

        0%,
        100% {
            transform: translateX(-50%) translateX(-10px);
            opacity: 0;
        }

        50% {
            transform: translateX(-50%) translateX(10px);
            opacity: 1;
        }
    }

    /* ===== Privacy Policy Page Styles ===== */
    .privacy-policy-content {
        max-width: 900px;
        margin: 0 auto;
        background: var(--card);
        border-radius: var(--radius-lg);
        padding: 3rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid var(--border);
    }

    .privacy-policy-content article {
        line-height: 1.8;
        color: var(--foreground);
    }

    .privacy-policy-content h1 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 2rem;
        background: linear-gradient(135deg, var(--energy-blue), var(--energy-cyan));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: center;
    }

    .privacy-policy-content h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin: 3rem 0 1.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid var(--primary);
        color: var(--primary);
    }

    .privacy-policy-content h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin: 2rem 0 1rem;
        color: var(--foreground);
    }

    .privacy-policy-content p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
        color: var(--muted-foreground);
    }

    .privacy-policy-content ul {
        margin: 1.5rem 0;
        padding-left: 2rem;
    }

    .privacy-policy-content li {
        margin-bottom: 0.75rem;
        position: relative;
        padding-left: 0.5rem;
    }

    .privacy-policy-content li::before {
        content: '▸';
        position: absolute;
        left: -1.5rem;
        color: var(--primary);
        font-weight: bold;
    }

    .privacy-policy-content strong {
        color: var(--foreground);
        font-weight: 600;
    }

    .privacy-policy-content a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
        transition: all var(--transition-base);
        position: relative;
        display: inline-block;
    }

    .privacy-policy-content a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width var(--transition-base);
    }

    .privacy-policy-content a:hover::after {
        width: 100%;
    }

    .privacy-policy-content a:hover {
        color: var(--energy-cyan);
    }

    /* Add some visual hierarchy with background blocks */
    .privacy-policy-content>ul {
        background: rgba(34, 39, 46, 0.3);
        border-radius: var(--radius);
        padding: 2rem;
        margin: 2rem 0;
        border: 1px solid var(--border);
    }

    .privacy-policy-content>ul>li {
        background: rgba(34, 39, 46, 0.5);
        border-radius: var(--radius);
        padding: 1rem;
        margin-bottom: 1rem;
        border-left: 3px solid var(--primary);
    }

    .privacy-policy-content>ul>li:last-child {
        margin-bottom: 0;
    }

    /* Style for nested lists */
    .privacy-policy-content ul ul {
        background: transparent;
        padding: 1rem 0 0 2rem;
        margin: 0;
    }

    .privacy-policy-content ul ul li {
        background: transparent;
        padding-left: 0.5rem;
        border-left: none;
    }

    .privacy-policy-content ul ul li::before {
        content: '•';
        left: -1rem;
    }

    /* Add accent blocks for important sections */
    .privacy-policy-content #zewinfo,
    .privacy-policy-content #cele {
        background: linear-gradient(135deg, hsla(200, 100%, 50%, 0.1), hsla(180, 100%, 50%, 0.1));
        border-radius: var(--radius);
        padding: 1.5rem;
        margin: 2rem 0;
        border: 1px solid hsla(200, 100%, 50%, 0.3);
    }

    .privacy-policy-content #zewnetrzne {
        background: rgba(34, 39, 46, 0.5);
        border-radius: var(--radius);
        padding: 2rem;
        margin: 2rem 0;
        border: 1px solid var(--border);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .privacy-policy-content {
            padding: 2rem 1.5rem;
        }

        .privacy-policy-content h1 {
            font-size: 2rem;
        }

        .privacy-policy-content h2 {
            font-size: 1.5rem;
        }

        .privacy-policy-content>ul {
            padding: 1.5rem;
        }

        .privacy-policy-content>ul>li {
            padding: 0.75rem;
        }
    }

    /* Add some animations */
    .privacy-policy-content article {
        animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Style for the back button */
    .privacy-policy-content+.text-center {
        margin-top: 3rem;
    }

    .privacy-policy-content+.text-center .btn {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .privacy-policy-content+.text-center .btn::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;
    }

    .privacy-policy-content+.text-center .btn:hover::before {
        width: 300px;
        height: 300px;
    }

    /* Catering Section Styles */
    .catering-section {
        padding: 80px 0;
        border-radius: 20px;
        margin: 60px 0;
        backdrop-filter: blur(10px);
    }

.catering-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
@media (max-width: 768px) {
    .catering-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
    .catering-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .catering-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--energy-blue), var(--energy-purple), var(--energy-pink));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .catering-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .catering-card:hover::before {
        transform: scaleX(1);
    }

    /* Ulepszone style dla ikon cateringowych */
    .catering-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .catering-icon::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform: rotate(45deg);
        transition: all 0.5s;
        opacity: 0;
    }

    .catering-card:hover .catering-icon::before {
        animation: shine 0.5s ease-in-out;
    }

    @keyframes shine {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
            opacity: 0;
        }

        50% {
            opacity: 1;
        }

        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
            opacity: 0;
        }
    }

    .catering-icon svg {
        width: 35px;
        height: 35px;
        stroke: white;
        stroke-width: 2;
        z-index: 1;
        position: relative;
    }

    /* Unikalne gradienty dla każdej kategorii */
    .catering-card:nth-child(1) .catering-icon {
        background: linear-gradient(135deg, #FF6B6B, #FF8E53);
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }

    .catering-card:nth-child(2) .catering-icon {
        background: linear-gradient(135deg, #4ECDC4, #44A08D);
        box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
    }

    .catering-card:nth-child(3) .catering-icon {
        background: linear-gradient(135deg, #A8E6CF, #7FD1AE);
        box-shadow: 0 4px 15px rgba(168, 230, 207, 0.4);
    }

    .catering-card:nth-child(4) .catering-icon {
        background: linear-gradient(135deg, #FFD93D, #FCB045);
        box-shadow: 0 4px 15px rgba(255, 217, 61, 0.4);
    }

    /* Efekt pulsowania dla ikon */
    .catering-card:hover .catering-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    /* Animacja wejścia ikon */
    .catering-icon svg {
        animation: iconFloat 3s ease-in-out infinite;
    }

    @keyframes iconFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    /* Opóźnienie animacji dla kolejnych ikon */
    .catering-card:nth-child(1) .catering-icon svg {
        animation-delay: 0s;
    }

    .catering-card:nth-child(2) .catering-icon svg {
        animation-delay: 0.2s;
    }

    .catering-card:nth-child(3) .catering-icon svg {
        animation-delay: 0.4s;
    }

    .catering-card:nth-child(4) .catering-icon svg {
        animation-delay: 0.6s;
    }

    .catering-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: white;
        background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .catering-desc {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .catering-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .catering-features li {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 12px;
        padding-left: 25px;
        position: relative;
        line-height: 1.5;
    }

    .catering-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        top: 0;
        color: var(--energy-cyan);
        font-weight: bold;
        font-size: 18px;
    }

    /* Event Pricing Styles */
    .event-pricing {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 20px;
        margin: 20px 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pricing-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pricing-item:last-child {
        border-bottom: none;
    }

    .pricing-label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
    }

    .pricing-value {
        font-size: 16px;
        color: white;
        font-weight: 700;
    }

    .pricing-value.highlight {
        color: var(--energy-cyan);
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .catering-section {
            padding: 50px 0;
            margin: 40px 0;
            border-radius: 15px;
        }

        .catering-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .catering-card {
            padding: 25px 20px;
        }

        .catering-icon {
            width: 60px;
            height: 60px;
        }

        .catering-icon svg {
            width: 30px;
            height: 30px;
        }

        .catering-title {
            font-size: 20px;
        }

        .catering-desc {
            font-size: 15px;
            margin-bottom: 20px;
        }

        .event-pricing {
            padding: 15px;
        }

        .pricing-item {
            padding: 10px 0;
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
        }
    }

    /* Animation for catering cards */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .catering-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .catering-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .catering-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .catering-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .catering-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    /* Event Coordinator Card Styles */
    .event-coordinator-card {
        background: linear-gradient(135deg, var(--energy-blue), var(--energy-purple));
        color: white;
        padding: 2rem;
        border-radius: var(--radius-lg);
        margin-top: 2rem;
        position: relative;
        overflow: hidden;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .event-coordinator-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
        animation: rotate 10s linear infinite;
    }

    .event-coordinator-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .event-coordinator-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .event-coordinator-icon {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .event-coordinator-icon svg {
        width: 24px;
        height: 24px;
        stroke: white;
        stroke-width: 2;
    }

    .event-coordinator-header h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin: 0;
        color: white;
    }

    .event-coordinator-content {
        position: relative;
        z-index: 1;
    }

    .coordinator-name {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: white;
    }

    .coordinator-title {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 1rem;
    }

    .coordinator-contact {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .coordinator-phone,
    .coordinator-email {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: white;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        padding: 0.5rem;
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
    }

    .coordinator-phone:hover,
    .coordinator-email:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(4px);
    }

    .coordinator-phone svg,
    .coordinator-email svg {
        width: 16px;
        height: 16px;
        stroke: white;
        stroke-width: 2;
        flex-shrink: 0;
    }

    /* Responsive styles for event coordinator card */
    @media (max-width: 768px) {
        .event-coordinator-card {
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .event-coordinator-header {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }
        
        .event-coordinator-header h3 {
            font-size: 1.125rem;
        }
        
        .coordinator-name {
            font-size: 1rem;
            text-align: center;
        }
        
        .coordinator-title {
            font-size: 0.8rem;
            text-align: center;
        }
        
        .coordinator-contact {
            gap: 0.5rem;
        }
        
        .coordinator-phone,
        .coordinator-email {
            font-size: 0.875rem;
            padding: 0.4rem;
        }
    }

    @media (max-width: 480px) {
        .event-coordinator-card {
            padding: 1.25rem;
        }
        
        .event-coordinator-icon {
            width: 40px;
            height: 40px;
        }
        
        .event-coordinator-icon svg {
            width: 20px;
            height: 20px;
        }
    }

    /* Sylwester Popup Modal */
.sylwester-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  animation: modalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sylwester-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.4s ease-out;
}

.sylwester-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.sylwester-modal-content {
  background: linear-gradient(135deg, hsl(220, 13%, 18%), hsl(215, 25%, 27%));
  border: 1px solid hsla(215, 25%, 27%, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  animation: modalBounce 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sylwester-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(120, 100%, 50%, 0.1);
  color: var(--energy-green);
  padding: 0.75rem 1.25rem;
  border: 1px solid hsla(120, 100%, 50%, 0.3);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sylwester-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--energy-blue), var(--energy-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-align: center;
}

.sylwester-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: clamp(2.5rem, 10vw, 4rem);
  font-weight: 900;
  color: var(--energy-gold);
  display: block;
  text-shadow: 0 0 20px hsla(45, 100%, 50%, 0.5);
}

.price-label {
  font-size: 1rem;
  color: hsla(210, 40%, 98%, 0.8);
  font-weight: 500;
}

.sylwester-desc {
  color: hsla(210, 40%, 98%, 0.8);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.sylwester-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sylwester-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid hsla(215, 25%, 27%, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  cursor: pointer;
  transition: all var(--transition-base);
}

.sylwester-close:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}

.sylwester-close svg {
  width: 20px;
  height: 20px;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalBounce {
  0% { transform: scale(0.7) translateY(50px); opacity: 0; }
  60% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}

@media (max-width: 480px) {
  .sylwester-modal-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  .sylwester-buttons {
    flex-direction: column;
  }
  .sylwester-buttons .btn {
    width: 100%;
  }
}
