/*
Theme Name: Prime NEWBUILD Group
Theme URI: 
Author: Antigravity
Description: Kompleksowe usługi budowlane
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: primenewbuild
*/

        /* ========================================
           CSS RESET & VARIABLES
        ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy-900: #0a1628;
            --navy-800: #0f1f3d;
            --navy-700: #152a4f;
            --navy-600: #1b3562;
            --navy-500: #1e3a6e;
            --graphite-900: #1a1d23;
            --graphite-800: #23272f;
            --graphite-700: #2d323c;
            --graphite-600: #3a4050;
            --graphite-500: #4a5168;
            --gray-100: #f4f5f7;
            --gray-200: #e8eaef;
            --gray-300: #d1d5de;
            --gray-400: #9ca3b4;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --accent-500: #e8750a;
            --accent-400: #f59e0b;
            --accent-300: #fbbf24;
            --accent-glow: rgba(232, 117, 10, 0.25);
            --gold: #c9a84c;
            --gold-light: #e0c675;
            --white: #ffffff;
            --white-90: rgba(255,255,255,0.9);
            --white-70: rgba(255,255,255,0.7);
            --white-50: rgba(255,255,255,0.5);
            --white-20: rgba(255,255,255,0.2);
            --white-10: rgba(255,255,255,0.1);
            --white-05: rgba(255,255,255,0.05);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.18);
            --shadow-xl: 0 16px 48px rgba(0,0,0,0.22);
            --shadow-accent: 0 4px 24px rgba(232, 117, 10, 0.3);
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition-fast: 0.2s ease;
            --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-100);
            background: var(--navy-900);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ========================================
           UTILITY
        ======================================== */
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent-500);
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            display: inline-block;
            width: 32px;
            height: 2px;
            background: var(--accent-500);
        }

        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.15;
            color: var(--white);
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--white-70);
            max-width: 640px;
            line-height: 1.75;
        }

        /* ========================================
           NAVIGATION
        ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 24px;
            transition: var(--transition-base);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(10, 22, 40, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--white-10);
        }

        .navbar-inner {
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 200px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0;
            text-decoration: none;
        }

        .logo img {
            height: 200px;
            width: auto;
            object-fit: contain;
            filter: brightness(1.2) contrast(1.05);
            transition: var(--transition-base);
        }

        .logo:hover img {
            filter: brightness(1.3);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--white-70);
            font-size: 0.88rem;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            transition: var(--transition-fast);
        }

        .nav-links a:hover {
            color: var(--white);
            background: var(--white-10);
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--accent-500), var(--accent-400)) !important;
            color: var(--white) !important;
            font-weight: 600 !important;
            padding: 10px 24px !important;
            border-radius: var(--radius-sm) !important;
            box-shadow: var(--shadow-accent);
        }

        .nav-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 28px rgba(232, 117, 10, 0.4) !important;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .menu-toggle span {
            width: 26px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: var(--transition-fast);
        }

        /* ========================================
           HERO SECTION – with real photo bg
        ======================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg-image {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
        }

        .hero-bg-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(10, 22, 40, 0.92) 0%,
                rgba(15, 31, 61, 0.82) 40%,
                rgba(27, 53, 98, 0.70) 100%
            );
            z-index: 1;
        }

        .hero-grid-overlay {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 2;
        }

        .hero-bottom-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: linear-gradient(to top, var(--navy-900) 0%, rgba(10,22,40,0.6) 50%, transparent 100%);
            z-index: 3;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1240px;
            margin: 0 auto;
            padding: 160px 24px 100px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 8px 20px 8px 8px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--white-90);
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease both;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse-dot 2s ease infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.6rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.08;
            color: var(--white);
            margin-bottom: 12px;
            animation: fadeInUp 0.8s 0.15s ease both;
            max-width: 800px;
        }

        .hero h1 .accent {
            background: linear-gradient(135deg, var(--accent-500), var(--accent-300));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-tagline {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            font-weight: 600;
            color: var(--accent-400);
            letter-spacing: 1px;
            margin-bottom: 28px;
            animation: fadeInUp 0.8s 0.25s ease both;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--white-70);
            max-width: 600px;
            line-height: 1.8;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s 0.35s ease both;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s 0.45s ease both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            transition: var(--transition-base);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
            color: var(--white);
            box-shadow: var(--shadow-accent);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(232, 117, 10, 0.4);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.08);
            color: var(--white);
            border: 1px solid var(--white-20);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: var(--white-20);
            border-color: var(--white-50);
            transform: translateY(-2px);
        }

        .btn-arrow {
            transition: transform var(--transition-fast);
        }

        .btn:hover .btn-arrow {
            transform: translateX(4px);
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 64px;
            padding-top: 40px;
            border-top: 1px solid var(--white-10);
            animation: fadeInUp 0.8s 0.55s ease both;
        }

        .hero-stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }

        .hero-stat-number .accent {
            background: linear-gradient(135deg, var(--accent-500), var(--accent-300));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--white-50);
            margin-top: 6px;
            font-weight: 500;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========================================
           PHOTO DIVIDER – fullwidth section break
        ======================================== */
        .photo-divider {
            position: relative;
            height: 50vh;
            min-height: 340px;
            overflow: hidden;
        }

        .photo-divider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .photo-divider::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(10, 22, 40, 0.5) 0%,
                rgba(10, 22, 40, 0.3) 50%,
                rgba(10, 22, 40, 0.6) 100%
            );
        }

        /* Smooth top/bottom fades on dividers */
        .photo-divider::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, var(--navy-900) 0%, transparent 100%);
            z-index: 2;
            pointer-events: none;
        }

        .photo-divider-bottom-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, var(--navy-900) 0%, transparent 100%);
            z-index: 2;
            pointer-events: none;
        }

        .photo-divider-content {
            position: absolute;
            inset: 0;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
        }

        .photo-divider-content h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--white);
            text-shadow: 0 2px 20px rgba(0,0,0,0.4);
        }

        .photo-divider-content h2 .accent {
            color: var(--accent-400);
        }

        /* ========================================
           ABOUT SECTION – with bg photo
        ======================================== */
        .about {
            padding: 120px 0;
            background: var(--navy-900);
            position: relative;
        }

        /* Smooth top fade into about */
        .about::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--navy-900), transparent);
            z-index: 1;
            pointer-events: none;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text .section-title {
            margin-bottom: 28px;
        }

        .about-text p {
            color: var(--white-70);
            font-size: 1.05rem;
            line-height: 1.85;
            margin-bottom: 20px;
        }

        .about-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 4/3;
            box-shadow: var(--shadow-xl);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,22,40,0.7), transparent 60%);
            pointer-events: none;
        }

        .about-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px;
            z-index: 2;
        }

        .about-image-stat {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .about-image-stat-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }

        .about-image-stat-text {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--white);
        }

        .about-image-stat-text span {
            display: block;
            font-size: 0.82rem;
            font-weight: 400;
            color: var(--white-70);
        }

        /* ========================================
           SERVICES SECTION – with bg texture
        ======================================== */
        .services {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        /* Smooth gradient transitions for services */
        .services::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, var(--navy-900));
            z-index: 3;
            pointer-events: none;
        }

        .services-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .services-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .services-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(26, 29, 35, 0.96) 0%,
                rgba(26, 29, 35, 0.93) 50%,
                rgba(26, 29, 35, 0.96) 100%
            );
        }

        .services > .container {
            position: relative;
            z-index: 2;
        }

        .services-top-fade {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, transparent, var(--navy-900));
            z-index: 3;
            pointer-events: none;
        }

        .services-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .services-header .section-subtitle {
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: rgba(35, 39, 47, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--white-05);
            border-radius: var(--radius-md);
            padding: 36px 28px;
            transition: var(--transition-base);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-500), var(--accent-400));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-base);
        }

        .service-card:hover {
            background: rgba(45, 50, 60, 0.9);
            border-color: var(--white-10);
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(232,117,10,0.15), rgba(245,158,11,0.08));
            border: 1px solid rgba(232,117,10,0.2);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
            transition: var(--transition-base);
        }

        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--accent-500), var(--accent-400));
            border-color: var(--accent-500);
            box-shadow: var(--shadow-accent);
        }

        .service-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .service-card p {
            font-size: 0.92rem;
            color: var(--white-50);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .service-tag {
            font-size: 0.72rem;
            font-weight: 500;
            color: var(--white-50);
            background: var(--white-05);
            border: 1px solid var(--white-05);
            padding: 4px 10px;
            border-radius: 50px;
            transition: var(--transition-fast);
        }

        .service-card:hover .service-tag {
            border-color: var(--white-10);
            color: var(--white-70);
        }

        /* ========================================
           REALIZACJE (GALLERY) SECTION
        ======================================== */
        .realizacje {
            padding: 120px 0;
            background: var(--navy-900);
            position: relative;
        }

        .realizacje::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--navy-900), transparent);
            z-index: 1;
            pointer-events: none;
        }

        .realizacje-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .realizacje-header .section-subtitle {
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius-md);
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease, filter 0.4s ease;
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,22,40,0.6) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px;
            z-index: 2;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-item-overlay {
            transform: translateY(0);
        }

        .gallery-item-overlay span {
            font-family: 'Outfit', sans-serif;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--white);
            background: rgba(232,117,10,0.85);
            padding: 4px 12px;
            border-radius: 50px;
        }

        /* Featured large items */
        .gallery-item.featured {
            grid-column: span 2;
            grid-row: span 2;
        }

        /* Show more button */
        .gallery-toggle-wrap {
            text-align: center;
            margin-top: 40px;
        }

        .gallery-hidden {
            display: none;
        }

        .gallery-hidden.show {
            display: grid;
            margin-top: 12px;
        }

        /* ========================================
           WHY US SECTION – with photo bg
        ======================================== */
        .why-us {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .why-us-top-fade {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, transparent, var(--navy-900));
            z-index: 3;
            pointer-events: none;
        }

        .why-us-bottom-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, transparent, var(--navy-900));
            z-index: 3;
            pointer-events: none;
        }

        .why-us-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .why-us-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 60%;
        }

        .why-us-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(10, 22, 40, 0.94) 0%,
                rgba(10, 22, 40, 0.88) 50%,
                rgba(15, 31, 61, 0.92) 100%
            );
        }

        .why-us > .container {
            position: relative;
            z-index: 2;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .why-us-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .why-us-item {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(8px);
            border: 1px solid var(--white-05);
            border-radius: var(--radius-md);
            padding: 24px;
            transition: var(--transition-base);
        }

        .why-us-item:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--white-10);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .why-us-item-icon {
            font-size: 1.6rem;
            margin-bottom: 12px;
            display: block;
        }

        .why-us-item h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.4;
        }

        .why-us-right .section-subtitle {
            margin-bottom: 32px;
        }

        .why-us-quote {
            background: linear-gradient(135deg, rgba(21,42,79,0.8), rgba(27,53,98,0.6));
            backdrop-filter: blur(10px);
            border: 1px solid var(--white-10);
            border-left: 4px solid var(--accent-500);
            border-radius: var(--radius-md);
            padding: 32px;
            margin-top: 32px;
        }

        .why-us-quote p {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--white-90);
            line-height: 1.7;
        }

        .why-us-quote cite {
            display: block;
            margin-top: 12px;
            font-size: 0.88rem;
            font-style: normal;
            font-weight: 600;
            color: var(--accent-400);
        }

        /* ========================================
           CTA BANNER – with photo bg
        ======================================== */
        .cta-banner {
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-top-fade {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, transparent, var(--navy-900));
            z-index: 3;
            pointer-events: none;
        }

        .cta-bottom-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, transparent, var(--graphite-900));
            z-index: 3;
            pointer-events: none;
        }

        .cta-banner-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .cta-banner-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-banner-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to right,
                rgba(10, 22, 40, 0.93),
                rgba(26, 29, 35, 0.88)
            );
        }

        .cta-banner-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-banner-inner .section-title {
            margin-bottom: 20px;
        }

        .cta-banner-inner .section-subtitle {
            margin: 0 auto 40px;
            text-align: center;
        }

        .cta-banner-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* ========================================
           FOOTER
        ======================================== */
        .footer {
            padding: 80px 0 0;
            background: var(--graphite-900);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 60px;
        }

        .footer-brand .logo {
            margin-bottom: 20px;
        }

        .footer-brand .logo img {
            height: 100px;
        }

        .footer-brand p {
            font-size: 0.92rem;
            color: var(--white-50);
            line-height: 1.75;
            margin-bottom: 24px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: var(--white-05);
            border: 1px solid var(--white-10);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white-50);
            text-decoration: none;
            font-size: 1.1rem;
            transition: var(--transition-fast);
        }

        .footer-social a:hover {
            background: var(--accent-500);
            border-color: var(--accent-500);
            color: var(--white);
            transform: translateY(-2px);
        }

        .footer-column h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: var(--white-50);
            text-decoration: none;
            font-size: 0.88rem;
            transition: var(--transition-fast);
        }

        .footer-column ul li a:hover {
            color: var(--accent-400);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 0.88rem;
            color: var(--white-50);
        }

        .footer-contact-icon {
            font-size: 1rem;
            color: var(--accent-500);
            margin-top: 2px;
            min-width: 20px;
        }

        .footer-bottom {
            border-top: 1px solid var(--white-05);
            padding: 24px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.82rem;
            color: var(--white-50);
        }

        .footer-bottom a {
            color: var(--accent-400);
            text-decoration: none;
        }

        /* ========================================
           LIGHTBOX
        ======================================== */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0.92);
            backdrop-filter: blur(20px);
            align-items: center;
            justify-content: center;
            padding: 40px;
            cursor: pointer;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90vw;
            max-height: 85vh;
            object-fit: contain;
            border-radius: var(--radius-md);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            cursor: default;
        }

        .lightbox-close {
            position: absolute;
            top: 24px;
            right: 32px;
            font-size: 2rem;
            color: var(--white);
            cursor: pointer;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            transition: var(--transition-fast);
        }

        .lightbox-close:hover {
            background: rgba(255,255,255,0.2);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2.5rem;
            color: var(--white);
            cursor: pointer;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50%;
            transition: var(--transition-fast);
            user-select: none;
        }

        .lightbox-nav:hover {
            background: rgba(232,117,10,0.5);
        }

        .lightbox-prev { left: 24px; }
        .lightbox-next { right: 24px; }

        .lightbox-counter {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.9rem;
            color: var(--white-70);
            background: rgba(0,0,0,0.5);
            padding: 6px 20px;
            border-radius: 50px;
        }

        /* ========================================
           SCROLL REVEAL
        ======================================== */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }
        .reveal-delay-6 { transition-delay: 0.6s; }

        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 1024px) {
            .about-grid,
            .why-us-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .gallery-item.featured {
                grid-column: span 1;
                grid-row: span 1;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero-stats { gap: 32px; }
        }

        @media (max-width: 768px) {
            .navbar.scrolled {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                background: rgba(10, 22, 40, 0.98);
            }
            .navbar-inner { height: 80px; }
            .logo img { height: 80px; }
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(10, 22, 40, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 16px;
                z-index: 999;
            }

            .nav-links.active { display: flex; }

            .nav-links a {
                font-size: 1.1rem;
                padding: 14px 32px;
            }

            .menu-toggle { display: flex; }

            .services-grid { grid-template-columns: 1fr; }

            .gallery-grid { grid-template-columns: repeat(2, 1fr); }

            .why-us-list { grid-template-columns: 1fr; }

            .hero-stats { flex-direction: column; gap: 20px; }

            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
            }

            .btn { width: 100%; justify-content: center; }

            .footer-grid { grid-template-columns: 1fr; gap: 36px; }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .cta-banner-actions {
                flex-direction: column;
                align-items: center;
            }

            .cta-banner-actions .btn {
                width: 100%;
                max-width: 320px;
            }

            .photo-divider {
                height: 35vh;
                min-height: 240px;
            }
        }

        @media (max-width: 480px) {
            .container { padding: 0 16px; }
            .hero-content { padding: 120px 16px 60px; }
            .about, .services, .why-us, .realizacje { padding: 80px 0; }
            .cta-banner { padding: 80px 0; }
            .service-card { padding: 28px 20px; }
            .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
        }
