        /* Reset i podstawowe style */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.7;
            color: #37474F;
            overflow-x: hidden;
            background-color: #FFFFFF;
        }
        
        /* Zmienne CSS z kolorami brandingu */
        :root {
            --primary: #5D4037;
            --primary-light: #8B6B61;
            --primary-dark: #321911;
            --secondary: #D4AF37;
            --secondary-light: #F4D76F;
            --secondary-dark: #A58617;
            --neutral: #D7CCC8;
            --neutral-light: #F5F5F5;
            --neutral-dark: #9E9E9E;
            --dark: #37474F;
            --dark-light: #607D8B;
            --dark-dark: #263238;
            --green: #2E7D32;
            --green-light: #43A047;
            --white: #FFFFFF;
            --black: #212121;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.07);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.10);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 16px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        .container {
            width: 90%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--primary);
            font-weight: 700;
            text-align: center;
            position: relative;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            text-align: center;
            color: var(--dark-light);
            max-width: 700px;
            margin: -40px auto 60px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .section-title span {
            color: var(--secondary);
        }

        .section-divider {
            height: 5px;
            background: linear-gradient(90deg, var(--primary-light) 0%, var(--secondary) 100%);
            margin: 0 auto;
            width: 150px;
            border-radius: 5px;
            margin-bottom: 50px;
        }
        
        .bg-light {
            background-color: var(--neutral-light);
        }
        
        .bg-dark {
            background-color: var(--dark);
            color: var(--white);
        }
        
        .bg-pattern {
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d7ccc8' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
            background-position: center;
        }

        .text-primary { color: var(--primary); }
        .text-secondary { color: var(--secondary); }
        .text-center { text-align: center; }
        .text-right { text-align: right; }
        .text-left { text-align: left; }

        .mt-0 { margin-top: 0; }
        .mt-1 { margin-top: 0.5rem; }
        .mt-2 { margin-top: 1rem; }
        .mt-3 { margin-top: 1.5rem; }
        .mt-4 { margin-top: 2rem; }
        .mt-5 { margin-top: 2.5rem; }

        .mb-0 { margin-bottom: 0; }
        .mb-1 { margin-bottom: 0.5rem; }
        .mb-2 { margin-bottom: 1rem; }
        .mb-3 { margin-bottom: 1.5rem; }
        .mb-4 { margin-bottom: 2rem; }
        .mb-5 { margin-bottom: 2.5rem; }
        
        /* Przyciski */
        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            font-size: 14px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-align: center;
            border: none;
            margin: 5px;
        }
        
        .btn:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            transition: width 0.4s ease-in-out;
            z-index: -1;
        }
        
        .btn:hover:before {
            width: 100%;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 10px rgba(93, 64, 55, 0.2);
        }
        
        .btn-primary:before {
            background-color: var(--primary-dark);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: var(--dark-dark);
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
        }
        
        .btn-secondary:before {
            background-color: var(--secondary-dark);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:before {
            background-color: var(--primary);
        }
        
        .btn-outline:hover {
            color: white;
        }
        
        .btn-with-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .btn-with-icon i {
            font-size: 1.2em;
        }
        
        /* Header i nawigacja */
        header {
            background-color: rgba(255, 255, 255, 0.98);
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 80px;
            display: flex;
            align-items: center;
        }
        
        header.scrolled {
            height: 70px;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-lg);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        
        .logo {
            display: flex;
            align-items: center;
            z-index: 1001;
        }
        
        .logo img {
            height: 48px;
            margin-right: 12px;
            transition: var(--transition);
        }
        
        header.scrolled .logo img {
            height: 40px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .logo-text span {
            color: var(--secondary);
        }
        
        header.scrolled .logo-text {
            font-size: 22px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu a {
            font-size: 16px;
            font-weight: 500;
            color: var(--dark);
            transition: var(--transition);
            padding: 10px 0;
            position: relative;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .nav-cta {
            margin-left: 20px;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            border: none;
            background: transparent;
            width: 30px;
            height: 30px;
            padding: 0;
            z-index: 1001;
        }
        
        .hamburger span {
            display: block;
            width: 30px;
            height: 3px;
            margin: 6px 0;
            background-color: var(--primary);
            transition: var(--transition);
            border-radius: 3px;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)), url('img/1581858726788-1350.webp');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            color: var(--white);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 150px;
            background-color: white;
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
            position: relative;
        }
        
        .hero-badge {
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--secondary);
            display: inline-block;
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .hero-badge i {
            margin-right: 8px;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero h2 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
            max-width: 600px;
        }
        
        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .hero-scroll {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0.8;
            transition: var(--transition);
            cursor: pointer;
        }
        
        .hero-scroll:hover {
            opacity: 1;
        }
        
        .hero-scroll i {
            font-size: 24px;
            animation: scroll-down 2s infinite;
        }
        
        @keyframes scroll-down {
            0% { transform: translateY(0); opacity: 0.8; }
            50% { transform: translateY(10px); opacity: 0.4; }
            100% { transform: translateY(0); opacity: 0.8; }
        }
        
        /* O nas */
        #o-nas {
            background-color: var(--white);
            position: relative;
            z-index: 1;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
            min-width: 320px;
        }
        
        .about-text h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .about-text h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .about-text p {
            margin-bottom: 25px;
            color: var(--dark);
            font-size: 16px;
            line-height: 1.8;
        }
        
        .about-text-list {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .about-text-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            color: var(--dark);
        }
        
        .about-text-list li i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 18px;
        }
        
        .about-image {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .about-image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 20px;
        }
        
        .about-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }
        
        .about-img:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .about-img:nth-child(odd) {
            margin-top: 30px;
        }
        
        .about-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 50px;
            flex-wrap: wrap;
            gap: 30px;
            background-color: var(--white);
            padding: 40px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
        }
        
        .stat-item {
            text-align: center;
            min-width: 160px;
            padding: 20px;
            background-color: var(--white);
            border-radius: var(--radius-md);
            transition: var(--transition);
            border-bottom: 3px solid transparent;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            border-bottom: 3px solid var(--secondary);
            box-shadow: var(--shadow-sm);
        }
        
        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 1rem;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        /* Usługi */
        #uslugi {
            background-color: var(--neutral-light);
            position: relative;
            overflow: hidden;
        }
        
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background-color: var(--white);
            border-radius: var(--radius-md);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0;
            background-color: var(--primary);
            z-index: -1;
            transition: var(--transition);
        }
        
        .service-card:hover::before {
            height: 5px;
        }
        
        .service-icon-wrapper {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background-color: var(--neutral-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon-wrapper {
            background-color: var(--primary-light);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .service-card:hover .service-icon {
            color: var(--white);
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .service-desc {
            color: var(--dark);
            font-size: 16px;
            margin-bottom: 25px;
            line-height: 1.7;
            flex-grow: 1;
        }
        
        .service-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: var(--radius-md);
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .service-link i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .service-link:hover {
            color: var(--secondary);
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }
        
        /* Galeria */
        #galeria {
            background-color: var(--white);
            position: relative;
        }

        #galeria::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background-color: var(--neutral-light);
            z-index: 0;
        }
        
        .gallery-container {
            position: relative;
            z-index: 1;
        }
        
        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 10px 20px;
            background-color: var(--white);
            border: none;
            color: var(--dark);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            border: 1px solid #eee;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background-color: var(--primary);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-md);
            height: 280px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(93, 64, 55, 0.9), rgba(93, 64, 55, 0.4));
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }
        
        .gallery-item:hover .gallery-overlay h4 {
            transform: translateY(0);
        }
        
        .gallery-overlay p {
            font-size: 0.95rem;
            margin-bottom: 15px;
            opacity: 0.9;
            transform: translateY(20px);
            transition: transform 0.4s ease 0.1s;
        }
        
        .gallery-item:hover .gallery-overlay p {
            transform: translateY(0);
        }

        .gallery-btn {
            margin-top: 40px;
            text-align: center;
        }
        
        /* Proces */
        #proces {
            background-color: var(--neutral-light);
            position: relative;
            overflow: hidden;
        }
        
        .process-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            height: 100%;
            width: 3px;
            background-color: var(--secondary);
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 60px;
        }
        
        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }
        
        .timeline-content {
            width: 85%;
            padding: 30px;
            background-color: var(--white);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            position: relative;
            transition: var(--transition);
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .timeline-content::before {
            content: '';
            position: absolute;
            top: 20px;
            width: 20px;
            height: 20px;
            background-color: var(--white);
            border: 3px solid var(--secondary);
            border-radius: 50%;
            z-index: 1;
            transition: var(--transition);
        }
        
        .timeline-item:hover .timeline-content::before {
            background-color: var(--secondary);
        }
        
        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -60px;
        }
        
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -60px;
        }
        
        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .timeline-content h3 i {
            color: var(--secondary);
            font-size: 1.2em;
        }
        
        .timeline-content p {
            color: var(--dark);
            font-size: 16px;
            line-height: 1.7;
        }
        
        .timeline-number {
            position: absolute;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            top: 5px;
            z-index: 2;
            box-shadow: var(--shadow-md);
        }
        
        .timeline-item:nth-child(odd) .timeline-number {
            right: calc(50% - 25px);
        }
        
        .timeline-item:nth-child(even) .timeline-number {
            left: calc(50% - 25px);
        }

        .timeline-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            margin-top: 15px;
            box-shadow: var(--shadow-sm);
        }
        
        /* Materiały */
        #materialy {
            background-color: var(--white);
            position: relative;
        }
        
        .materials-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .material-card {
            background-color: var(--white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            border: 1px solid #eee;
        }
        
        .material-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .material-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 220px;
        }
        
        .material-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .material-card:hover .material-img {
            transform: scale(1.05);
        }
        
        .material-category {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--secondary);
            color: var(--dark-dark);
            padding: 5px 10px;
            border-radius: 3px;
            font-weight: 500;
            font-size: 0.8rem;
            z-index: 1;
        }
        
        .material-body {
            padding: 25px;
        }
        
        .material-body h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .material-body h3 i {
            color: var(--secondary);
        }
        
        .material-body p {
            color: var(--dark);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .material-features {
            list-style: none;
            margin-top: 20px;
        }

        .material-features li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .material-features li i {
            color: var(--secondary);
            margin-right: 10px;
        }

        .material-action {
            margin-top: 20px;
        }
        
        /* Kontakt */
        #kontakt {
            background-color: var(--neutral-light);
            position: relative;
        }

        .contact-wrapper {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .contact-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .contact-header p {
            font-size: 18px;
            color: var(--dark);
            margin-top: 20px;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            box-shadow: var(--shadow-lg);
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        
        .contact-info {
            flex: 1;
            min-width: 320px;
            background-color: var(--primary);
            color: var(--white);
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .contact-info h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .info-item {
            display: flex;
            margin-bottom: 30px;
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            color: var(--secondary);
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .info-item:hover .info-icon {
            background-color: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        .info-content h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--white);
        }
        
        .info-content p, .info-content a {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }
        
        .info-content a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
            font-size: 1.2rem;
            color: var(--white);
        }
        
        .social-icon:hover {
            background-color: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        .contact-form {
            flex: 1.5;
            min-width: 320px;
            background-color: var(--white);
            padding: 50px;
        }
        
        .contact-form h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .contact-form h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
            flex: 1;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark);
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Roboto', sans-serif;
            font-size: 15px;
            transition: var(--transition);
            background-color: #f9f9f9;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-check {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .form-check input {
            margin-right: 10px;
            margin-top: 5px;
        }

        .form-check label {
            font-size: 14px;
            color: var(--dark);
            line-height: 1.5;
        }

        .form-check a {
            color: var(--primary);
            text-decoration: underline;
        }

        .form-check a:hover {
            color: var(--secondary);
        }

        .contact-map {
            width: 100%;
            height: 400px;
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-top: 50px;
            box-shadow: var(--shadow-md);
            border: 5px solid var(--white);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-dark);
            color: var(--white);
            padding: 80px 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
            justify-content: space-between;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .footer-logo-text {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
        }
        
        .footer-logo-text span {
            color: var(--secondary);
        }
        
        .footer-about {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            color: var(--white);
        }
        
        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 8px;
            font-size: 0.8em;
            color: var(--secondary);
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-contact-item {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }
        
        .footer-contact-icon {
            margin-right: 10px;
            color: var(--secondary);
            font-size: 1.2em;
            margin-top: 3px;
        }
        
        .footer-contact-text {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }
        
        .footer-contact-text a {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-contact-text a:hover {
            color: var(--secondary);
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .footer-social a {
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            font-size: 1.1rem;
            color: var(--white);
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            background-color: var(--secondary);
            color: var(--dark-dark);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Polityka prywatności */
        .privacy-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            overflow-y: auto;
        }
        
        .privacy-content {
            background-color: white;
            margin: 50px auto;
            width: 90%;
            max-width: 800px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            position: relative;
            padding: 30px;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .close-privacy {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
            transition: var(--transition);
        }
        
        .close-privacy:hover {
            color: var(--secondary);
        }
        
        /* Cookie banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            color: var(--white);
            padding: 20px 0;
            z-index: 1500;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        .cookie-text a {
            color: var(--secondary);
            text-decoration: underline;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }
        
        .cookie-accept {
            background-color: var(--secondary);
            color: var(--dark-dark);
        }
        
        .cookie-accept:hover {
            background-color: var(--secondary-dark);
            color: var(--white);
        }
        
        .cookie-decline {
            background-color: transparent;
            border: 1px solid var(--white);
            color: var(--white);
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            cursor: pointer;
            box-shadow: var(--shadow-md);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
        }
        
        /* Responsywność */
        @media screen and (max-width: 992px) {
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .hero h1 {
                font-size: 3.2rem;
            }
            
            .process-timeline::before {
                left: 30px;
            }
            
            .timeline-item {
                padding-right: 0;
                justify-content: flex-start;
                padding-left: 80px;
            }
            
            .timeline-item:nth-child(even) {
                padding-left: 80px;
            }
            
            .timeline-content {
                width: 100%;
            }
            
            .timeline-item .timeline-content::before,
            .timeline-item:nth-child(even) .timeline-content::before {
                left: -50px;
            }
            
            .timeline-item .timeline-number,
            .timeline-item:nth-child(even) .timeline-number {
                left: 5px;
            }
            
            .contact-info {
                padding: 30px;
            }
            
            .contact-form {
                padding: 30px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .navbar {
                padding: 0;
            }
            
            .hamburger {
                display: block;
                z-index: 1001;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 250px;
                height: 100vh;
                flex-direction: column;
                justify-content: center;
                background-color: var(--white);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.4s ease;
                z-index: 1000;
                gap: 20px;
                padding: 0;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 7px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(8px, -7px);
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero h2 {
                font-size: 1.2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-btns .btn {
                width: 100%;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }
        
        @media screen and (max-width: 576px) {
            .container {
                width: 95%;
                padding: 0 10px;
            }
            
            .section {
                padding: 50px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero h2 {
                font-size: 1rem;
            }
            
            .about-text h3, .contact-form h3, .contact-info h3 {
                min-width: 100%;
            }
            
            .back-to-top {
                width: 40px;
                height: 40px;
                bottom: 20px;
                right: 20px;
            }

            .hero {
                height: 80vh;
                min-height: 500px;
            }
        }

        @media screen and (max-width: 480px) {
            .timeline-item {
                padding-left: 60px;
            }
            .timeline-content::before {
                left: -40px;
            }
        }

        @media (pointer: coarse) {
            .footer-links li {
                margin-bottom: 20px;
            }
            .btn {
                padding: 16px 30px;
            }
        }
    

        /* Usprawnienia czytelności dla mobile i desktop */
        body {
            font-size: 16px; /* Baza dla lepszej czytelności */
            line-height: 1.6;
            color: #2c3e50; /* Ciemniejszy szary dla lepszego kontrastu */
        }
        
        /* Większe odstępy na telefonach dla łatwiejszego klikania */
        @media (max-width: 768px) {
            .btn {
                padding: 12px 24px; /* Większe przyciski */
                display: block;
                width: 100%;
                margin-bottom: 10px;
                text-align: center;
            }
            .section {
                padding: 40px 0; /* Lepszy oddech między sekcjami */
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.75rem; }
            p { font-size: 1rem; }
        }
        
        /* Wyróżnienie nowej sekcji */
        #new-business:hover {
            background-color: #e6eaed !important;
            transition: background-color 0.3s ease;
        }
    

        /* Logo Styles */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        .logo-icon {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-right: 12px;
            display: flex;
            align-items: center;
        }
        .logo-text-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .logo-main {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .logo-main span {
            color: var(--secondary);
        }
        .logo-sub {
            font-size: 0.75rem;
            color: var(--dark-light);
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Mobile Fixes */
        @media screen and (max-width: 992px) {
            .hero h1 { font-size: 3rem; }
            .section-title { font-size: 2.2rem; }
        }

        @media screen and (max-width: 768px) {
            .services-container, 
            .gallery-grid, 
            .materials-container,
            .about-image-grid {
                grid-template-columns: 1fr !important;
                gap: 30px;
            }
            .hero h1 {
                font-size: 2.2rem;
                word-wrap: break-word;
            }
            .hero h2 {
                font-size: 1.1rem;
            }
            .contact-container {
                flex-direction: column;
            }
            .contact-info, .contact-form {
                width: 100%;
                min-width: 0;
            }
            .about-content {
                flex-direction: column;
            }
            .about-text, .about-image {
                width: 100%;
                min-width: 0;
            }
            .timeline-item {
                padding-right: 0;
                padding-left: 40px;
                justify-content: flex-start;
                margin-bottom: 40px;
            }
            .timeline-item:nth-child(even) {
                padding-left: 40px;
            }
            .process-timeline::before {
                left: 15px;
            }
            .timeline-number, 
            .timeline-item:nth-child(even) .timeline-number {
                left: -10px;
                right: auto;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .timeline-content::before {
                display: none;
            }
            .timeline-content {
                width: 100%;
            }
            .section {
                padding: 60px 0;
            }
            .container {
                padding: 0 15px;
                width: 100%;
            }
            .logo-main { font-size: 1.2rem; }
            .logo-icon { font-size: 1.8rem; }
        }
    

        /* Fix for text visibility under "Nasze Realizacje" */
        .section-title, .section-subtitle {
            position: relative;
            z-index: 5;
        }

        /* Mobile Gallery Readability */
        @media screen and (max-width: 768px) {
            .gallery-item {
                height: auto !important;
                display: flex;
                flex-direction: column;
            }
            .gallery-img {
                height: 250px;
                width: 100%;
            }
            .gallery-overlay {
                position: relative !important;
                opacity: 1 !important;
                background: var(--primary) !important;
                height: auto !important;
                padding: 20px !important;
                justify-content: flex-start !important;
            }
            .gallery-overlay h4, .gallery-overlay p {
                transform: none !important;
                opacity: 1 !important;
                margin-bottom: 5px;
            }
            
            /* Fix for "Jak pracujemy" subtitle overlap */
            .section-subtitle {
                margin-top: 30px !important;
                margin-bottom: 40px !important;
            }
        }

        /* Footer Logo Styles */
        .footer-logo .logo-icon {
            color: var(--secondary);
            font-size: 2rem;
            margin-right: 10px;
        }
        .footer-logo .logo-main {
            color: var(--white);
            font-size: 1.4rem;
        }
        .footer-logo .logo-sub {
            color: rgba(255,255,255,0.7);
        }
    

        /* ===== MOBILE RESPONSIVENESS IMPROVEMENTS ===== */

        /* Usuwa parallax który psuje się na iOS Safari */
        .hero {
            background-attachment: scroll;
        }

        /* Poprawki dla banera sprzedażowego */
        #sale-banner {
            font-size: clamp(0.8rem, 3.5vw, 1rem);
        }

        /* Ogólne poprawki dotyku */
        a, button, .btn, .filter-btn, .social-icon, .back-to-top {
            touch-action: manipulation;
        }

        /* Nav CTA ukryj na małych ekranach gdy menu jest schowane */
        @media screen and (max-width: 768px) {
            .nav-cta {
                display: none;
            }

            /* Baner sprzedaży - linia na mobile */
            #sale-banner {
                padding: 10px 15px;
                font-size: 0.82rem;
            }

            /* Hero - brak fixed attachment na mobile */
            .hero {
                background-attachment: scroll;
                min-height: 100svh;
            }

            /* Stats bardziej zwarte */
            .about-stats {
                padding: 20px 10px;
                gap: 15px;
            }
            .stat-item {
                min-width: 130px;
                padding: 15px 10px;
            }
            .stat-number { font-size: 2rem; }

            /* Sekcja kontakt - padding */
            .contact-info, .contact-form {
                padding: 30px 20px;
            }

            /* Timeline na mobile */
            .timeline-content {
                padding: 20px 15px;
            }

            /* Gallery items na mobile */
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            /* Services na mobile */
            .services-container {
                grid-template-columns: 1fr;
            }

            /* Footer kolumny */
            .footer-column {
                min-width: 100%;
            }

            /* Zmniejsz padding sekcji */
            .section {
                padding: 50px 0;
            }

            /* Większy kontrast tekstu sekcji hero */
            .hero h1 {
                font-size: clamp(1.6rem, 7vw, 2.2rem);
                line-height: 1.25;
            }
            .hero h2 {
                font-size: clamp(0.95rem, 4vw, 1.1rem);
            }
        }

        @media screen and (max-width: 480px) {
            /* Przyciski pełna szerokość */
            .hero-btns .btn {
                width: 100%;
                display: block;
                margin: 5px 0;
            }

            /* Tytuły sekcji */
            .section-title {
                font-size: clamp(1.4rem, 6vw, 1.8rem);
            }

            /* Materiały grid */
            .materials-container {
                grid-template-columns: 1fr;
            }

            /* Zmniejsz obrazy galerii na bardzo małych */
            .gallery-img {
                height: 200px;
            }

            /* Kontakt info pełna szerokość */
            .info-item {
                flex-direction: row;
                align-items: flex-start;
            }

            /* Formularz */
            .contact-form {
                padding: 20px 15px;
            }
        }
    

        /* ===== Sekcja FAQ (#faq) ===== */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--white, #fff);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            margin-bottom: 15px;
            padding: 0 20px;
        }
        .faq-question {
            cursor: pointer;
            list-style: none;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 18px 30px 18px 0;
            position: relative;
        }
        .faq-question::-webkit-details-marker {
            display: none;
        }
        .faq-question::after {
            content: "+";
            position: absolute;
            right: 0;
            top: 18px;
            font-size: 1.3rem;
            font-weight: 400;
        }
        .faq-item[open] .faq-question::after {
            content: "\2212";
        }
        .faq-answer {
            padding: 0 0 20px 0;
        }
        .faq-answer p {
            margin: 0;
            line-height: 1.6;
        }
    
