/* ZOPT MALIZOWANY BUNDLE CSS - DEKOIZA */


/* --- START reset.css --- */
/* Resetowanie styli */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Dodanie linku do FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css'); 
/* --- END reset.css --- */

/* --- START header.css --- */
/* === MODERN HEADER 2.0 === */

/* Base Header Style */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1002; /* Above mobile overlay */
}

/* Scrolled State (Glassmorphism) */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* --- LOGO --- */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo img {
    transition: transform 0.3s ease;
}

.site-header.scrolled .header-logo img {
    transform: scale(0.9);
}

.brand-name {
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 1;
    color: var(--white); /* Default for Hero */
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.site-header.scrolled .brand-name {
    color: var(--secondary-color);
    text-shadow: none;
}

.brand-deko { font-weight: 700; }
.brand-iza { font-style: italic; font-weight: 400; }

/* --- DESKTOP NAV --- */
.desktop-nav {
    margin: 0 30px;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.site-header.scrolled .desktop-nav a {
    color: var(--text-color);
}

/* Link Hover Effect (Underline) */
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--white);
}

.site-header.scrolled .desktop-nav a:hover,
.site-header.scrolled .desktop-nav a.active {
    color: var(--primary-color);
}

/* --- HEADER ACTIONS (CTA) --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.site-header.scrolled .header-phone-link {
    color: var(--secondary-color);
}

.header-phone-link:hover {
    color: var(--primary-color);
}

.header-cta-btn {
    padding: 10px 24px;
    font-size: 13px;
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.header-cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* --- MOBILE MENU TOGGLE --- */
.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1003;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    position: absolute;
    transition: background-color 0.3s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    position: absolute;
    transition: transform 0.3s ease;
}

.hamburger-inner::before { top: -8px; }
.hamburger-inner::after { bottom: -8px; }

.site-header.scrolled .hamburger-inner,
.site-header.scrolled .hamburger-inner::before,
.site-header.scrolled .hamburger-inner::after {
    background-color: var(--secondary-color);
}

/* Hamburger Active State */
.mobile-menu-toggle.active .hamburger-inner {
    background-color: transparent !important;
}

.mobile-menu-toggle.active .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--secondary-color); /* Always dark on open menu */
}

.mobile-menu-toggle.active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--secondary-color);
}

/* --- MOBILE NAV OVERLAY --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1001;
    padding: 100px 20px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Staggered animation for list items */
.mobile-nav-overlay.active .mobile-nav-list li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-list li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-list li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-list li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-overlay.active .mobile-nav-list li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-list a {
    font-family: var(--font-secondary);
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.mobile-nav-list a.active {
    color: var(--primary-color);
}

.mobile-nav-footer {
    margin-top: auto;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 30px;
    opacity: 0;
    transition: opacity 0.5s ease 0.6s;
}

.mobile-nav-overlay.active .mobile-nav-footer {
    opacity: 1;
}

.mobile-contact-link {
    display: block;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.mobile-nav-footer p {
    color: var(--text-light);
    font-size: 14px;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 992px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Logo adjustments for mobile */
    .brand-name {
        font-size: 20px;
    }

    .site-header {
        padding: 10px 0;
    }
    
    /* Na mobile header zawsze ma lekkie tło jeśli nie jest na górze */
    .site-header.scrolled {
        padding: 8px 0;
    }
}
/* --- END header.css --- */

/* --- START hero.css --- */
/* === MODERN HERO SECTION === */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to left */
    color: var(--white);
    overflow: hidden;
    margin-top: 0; /* Reset any margin */
}

/* LCP Image Styling */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Delikatny efekt zoom przy załadowaniu */
    animation: subtleZoom 20s infinite alternate;
}

@keyframes subtleZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

/* Cinematic Overlay */
/* Ciemniej z lewej (pod tekst), jaśniej z prawej (żeby widać było wnętrze) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(26, 41, 66, 0.85) 0%, 
        rgba(26, 41, 66, 0.7) 40%, 
        rgba(26, 41, 66, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 60px; /* Offset for fixed header */
}

.hero-text-wrapper {
    max-width: 650px;
}

/* Typography */
.hero-subtitle {
    display: block;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero h1 {
    font-family: var(--font-secondary);
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.highlight-text {
    display: block;
    color: var(--primary-color);
    font-style: italic;
    font-weight: 400;
    position: relative;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.pulse-hover:hover {
    animation: pulseBtn 1.5s infinite;
}

@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(197, 168, 130, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(197, 168, 130, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 168, 130, 0); }
}

/* Features (Trust Signals) */
.hero-features {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Animations - renamed to avoid conflicts */
.hero-fade-in {
    opacity: 0; /* Start hidden */
    animation: heroFadeInUp 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-down-indicator:hover {
    opacity: 1;
}

.mouse-wheel {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* === MEDIA QUERIES === */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-overlay {
        /* Bardziej agresywne tło na mniejszych ekranach dla czytelności */
        background: linear-gradient(180deg, 
            rgba(26, 41, 66, 0.85) 0%, 
            rgba(26, 41, 66, 0.75) 60%, 
            rgba(26, 41, 66, 0.6) 100%);
    }
    
    .hero-features {
        flex-wrap: wrap;
        gap: 15px 25px;
    }
}

@media (max-width: 768px) {
    .hero {
        /* Na mobile wyśrodkuj treść */
        justify-content: center;
        text-align: center;
    }
    
    .hero-text-wrapper {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        font-size: 12px;
        background: rgba(255, 255, 255, 0.1);
        padding: 5px 10px;
        border-radius: 20px;
        display: inline-block;
    }
    
    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .btn-lg {
        width: 100%;
        padding: 14px 20px;
    }
    
    .hero-features {
        justify-content: center;
        border-top: none;
        padding-top: 0;
        background: rgba(0,0,0,0.2);
        padding: 15px;
        border-radius: 10px;
        width: 100%;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .scroll-down-indicator {
        display: none; /* Ukryj na małych ekranach, ludzie wiedzą że trzeba scrollować */
    }
}
/* --- END hero.css --- */

/* --- START offer.css --- */
/* === MODERN OFFER SECTION === */

.offer {
    background-color: var(--white);
    padding: 80px 0;
}

.section-header h2 {
    font-family: var(--font-secondary);
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

/* Grid & Container */
.offer-container {
    width: 100%;
    position: relative;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 col on desktop */
    gap: 30px;
}

/* Offer Card */
.offer-card {
    background: transparent;
    border-radius: 0; /* Minimalizm */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    group: hover;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5; /* Vertical format */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #f0f0f0; /* Placeholder color */
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover Effects */
.offer-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay .btn {
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.offer-card:hover .card-overlay .btn {
    transform: translateY(0);
}

/* Content */
.card-content h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
}

.card-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* === MOBILE SLIDER (CSS ONLY) === */
@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 col on tablet */
    }
}

@media (max-width: 768px) {
    .offer {
        padding: 50px 0;
        overflow: hidden; /* Hide scrollbar parent */
    }

    .offer-container {
        /* Break out of container on mobile */
        width: 100vw;
        margin-left: -15px; /* Offset parent padding */
        padding-left: 20px; /* Add left padding */
        padding-right: 20px; /* Add right padding spacer */
    }

    .offer-grid {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 30px; /* Space for scrollbar/shadow */
        -webkit-overflow-scrolling: touch;
        
        /* Hide Scrollbar */
        scrollbar-width: none; /* Firefox */
    }
    
    .offer-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .offer-card {
        flex: 0 0 80%; /* Karta zajmuje 80% szerokości ekranu */
        scroll-snap-align: start;
    }

    .card-image-wrapper {
        aspect-ratio: 1/1; /* Square on mobile */
        border-radius: 12px;
    }

    /* Always show overlay on mobile? No, button is distracting.
       Better: Make whole card clickable (which it is) */
    .card-overlay {
        display: none; 
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}
/* --- END offer.css --- */

/* --- START process.css --- */
/* === MODERN PROCESS SECTION === */

.process {
    background-color: var(--light-bg);
    padding: 80px 0;
}

/* Process Container & Grid */
.process-container {
    width: 100%;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Process Card */
.process-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Watermark Step Number */
.step-indicator {
    position: absolute;
    top: -15px;
    right: -10px;
    font-family: var(--font-secondary);
    font-size: 80px;
    font-weight: 700;
    color: rgba(197, 168, 130, 0.1); /* Primary color fade */
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* Icon */
.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.icon-wrapper i {
    font-size: 24px;
    color: var(--primary-color);
}

/* Content */
.process-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.process-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.step-benefit {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* CTA Section inside Process */
.process-cta p {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 500;
}

/* === MOBILE SLIDER (CSS ONLY) === */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process {
        padding: 50px 0;
        overflow: hidden;
    }

    .process-container {
        width: 100vw;
        margin-left: -15px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .process-grid {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .process-grid::-webkit-scrollbar {
        display: none;
    }

    .process-card {
        flex: 0 0 80%;
        scroll-snap-align: start;
        min-height: 280px; /* Ensure uniform height on mobile */
    }
}
/* --- END process.css --- */

/* --- START portfolio.css --- */
/* === MODERN PORTFOLIO SECTION === */

.portfolio {
    background-color: var(--white);
    padding: 80px 0;
    overflow: hidden; /* Prevent horizontal scrollbar on body */
}

.portfolio-wrapper {
    position: relative;
    width: 100%;
}

/* Slider Container (Scroll Snap) */
.slider-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px; /* Space for shadow/scrollbar */
    -webkit-overflow-scrolling: touch;
    
    /* Hide Scrollbar */
    scrollbar-width: none; /* Firefox */
}

.slider-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Portfolio Item (Card) */
.slider-item {
    flex: 0 0 350px; /* Fixed width on desktop */
    scroll-snap-align: start;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
    aspect-ratio: 3/4; /* Portrait format */
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.slider-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Image Styling */
.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-item:hover img {
    transform: scale(1.05);
}

/* Caption Overlay - HIDDEN FOR USER (SEO ONLY) */
.portfolio-caption {
    display: none !important;
    /*
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    */
}

/* 
.slider-item:hover .portfolio-caption {
    opacity: 1;
    transform: translateY(0);
}
*/

.portfolio-caption h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.portfolio-caption span {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Buttons */
.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Instagram Button */
.btn-outline.text-secondary {
    border-color: #eee;
    color: var(--text-muted);
    font-size: 14px;
    padding: 10px 25px;
}

.btn-outline.text-secondary:hover {
    background-color: #fafafa;
    color: var(--secondary-color);
}

/* Loader */
.loader {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-color);
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 80%; /* 80% width on mobile */
        aspect-ratio: 4/5;
    }
    
    .portfolio-wrapper {
        width: 100vw;
        margin-left: -15px; /* Offset container padding */
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .slider-container {
        gap: 15px;
    }
    
    /* Always show caption on mobile? Or keep clean? Let's keep clean. */
    .portfolio-caption {
        display: none !important;
    }
    
    .slider-navigation {
        display: none; /* Hide arrows on mobile, swipe is natural */
    }
}
/* --- END portfolio.css --- */

/* --- START testimonials.css --- */
/* === MODERN TESTIMONIALS (Google Style) === */

.testimonials {
    background-color: var(--light-bg);
    padding: 80px 0;
    overflow: hidden;
}

/* Rating Badge (Header) */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.rating-score {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-color);
}

.stars {
    color: #ffc107; /* Google star color */
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.review-count-link {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: underline;
    margin-left: 5px;
}

/* Slider Container */
.testimonials-wrapper {
    width: 100%;
    position: relative;
}

.testimonials-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    padding-left: 20px; /* Left padding for mobile swipe */
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    
    /* Hide Scrollbar */
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

/* Testimonial Card (Google Style) */
.testimonial-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto; /* Auto height for text */
}

.testimonial-card:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-2px);
}

/* Review Header */
.review-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 2px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars-small {
    color: #ffc107;
    font-size: 10px;
    display: flex;
    gap: 1px;
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
}

.source-icon {
    opacity: 0.8;
}

/* Review Content */
.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    /* Opcjonalnie: limit linii dla równych kart */
    /* display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 85%; /* Wider on mobile */
    }
    
    .testimonials-wrapper {
        width: 100vw;
        margin-left: -15px;
        /* Padding handled by grid */
    }
    
    .google-rating-badge {
        flex-direction: column;
        gap: 5px;
        padding: 15px 20px;
        border-radius: 12px;
    }
}
/* --- END testimonials.css --- */

/* --- START about.css --- */
/* About Section - Premium Minimalism Refactoring */
.about {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

/* Dekoracyjne tło (subtelne gradienty) */
.about::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 217, 196, 0.3) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Lewa kolumna: Treść */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color, #C5A47E);
    font-weight: 600;
    margin-bottom: -16px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 300; /* Light font weight for elegance */
    line-height: 1.2;
    color: var(--text-dark, #333);
    margin: 0;
}

.about-title strong {
    font-weight: 700;
    display: block; /* Break line for impact */
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted, #666);
    font-weight: 400;
}

/* Lista wartości */
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 10px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color, #333);
    opacity: 0.8;
}

.value-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark, #333);
}

/* Podpis właścicielki */
.about-signature {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.signature-text {
    font-family: 'Playfair Display', serif; /* Jeśli dostępna, lub fallback */
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-dark, #333);
}

.signature-role {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted, #999);
    font-style: normal;
    margin-top: 4px;
}

/* Prawa kolumna: Liczniki / Visual */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Karta statystyk - Glassmorphism */
.stats-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 48px;
    width: 100%;
    max-width: 500px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 0; /* Border handle separation */
    position: relative;
    overflow: hidden;
}

/* Dekoracyjna linia wewnątrz karty */
.stats-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #C5A47E, #EAD9C4);
}

.stat-item {
    padding: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-item:first-child {
    padding-top: 0;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-dark, #333);
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.counter-suffix {
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent-color, #C5A47E);
    margin-left: 4px;
}

.stat-label {
    text-align: right;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-muted, #666);
    max-width: 120px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about {
        padding: 60px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        order: -1; /* Show stats first/top on mobile or bottom? Usually content first on mobile for About */
        order: 1; /* Content first, stats below */
    }
    
    .about-title {
        font-size: 2rem;
    }

    .stats-card {
        padding: 32px;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-suffix {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .stat-label {
        text-align: left;
        max-width: 100%;
    }
}

} 
/* --- END about.css --- */

/* --- START faq.css --- */
/* FAQ Section - Premium Minimalism Refactoring */
.faq {
    padding: 100px 0;
    background-color: #f9f9f9; /* Lekko szare tło dla odróżnienia od sekcji About */
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.faq-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color, #C5A47E);
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark, #333);
    line-height: 1.2;
}

.faq-title strong {
    font-weight: 700;
}

/* Kontener Akordeonu */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    padding: 40px;
}

/* Pojedynczy element FAQ */
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark, #333);
    gap: 20px;
}

.faq-question:hover {
    color: var(--accent-color, #C5A47E);
}

.faq-item.active .faq-question {
    color: var(--accent-color, #C5A47E);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ikona plus/minus tworzona CSSem dla ostrości */
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 14px;
}

.faq-icon::after {
    width: 14px;
    height: 2px;
}

/* Stan aktywny ikony (obrót o 45 stopni tworzy 'X' lub płynne przejście do minusa) */
/* Tutaj zrobimy minus: obracamy before o 90 stopni, żeby pokrył się z after */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon::before {
    transform: translate(-50%, -50%) rotate(90deg); /* Składa się w poziomą linię */
}

/* Odpowiedź */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Wystarczająco dużo dla tekstu */
    opacity: 1;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted, #666);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* CTA pod FAQ */
.faq-footer {
    text-align: center;
    margin-top: 60px;
}

.faq-footer p {
    color: var(--text-muted, #666);
    margin-bottom: 20px;
}

/* Responsywność */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-container {
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.03);
        background: transparent; /* Na mobile lżejszy wygląd bez ramki kontenera */
        box-shadow: none;
        padding: 0 20px;
    }
    
    .faq-item {
        background: #fff;
        margin-bottom: 12px;
        border-radius: 12px;
        padding: 0 20px;
        border: 1px solid rgba(0,0,0,0.03);
        box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 20px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
}

/* --- END faq.css --- */

/* --- START contact.css --- */
/* Contact Section - Premium Minimalism Refactoring */
.contact {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Dekoracyjne tło */
.contact::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 168, 130, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color, #C5A47E);
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark, #333);
    line-height: 1.2;
}

.contact-title strong {
    font-weight: 700;
}

/* Główny kontener */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Lewa kolumna: Informacje */
.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-group {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color, #C5A47E);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-group:hover .info-icon {
    background-color: var(--accent-color, #C5A47E);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 168, 130, 0.2);
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark, #333);
}

.info-content p, 
.info-content a {
    font-size: 1rem;
    color: var(--text-muted, #666);
    line-height: 1.6;
    display: block;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-color, #C5A47E);
}

/* Godziny otwarcia - Tabela */
.hours-list {
    margin-top: 8px;
    font-size: 0.95rem;
    color: var(--text-muted, #666);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Wyrównanie w pionie */
    gap: 20px; /* Bezpieczny odstęp między dniem a godziną */
    margin-bottom: 6px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding-bottom: 6px;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    white-space: nowrap; /* Zapobiega łamaniu nazwy dnia w dziwnym miejscu */
}

/* Social Media */
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-btn {
    position: relative; /* Baza dla pozycjonowania absolutnego */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: #fff;
    color: var(--text-dark, #333);
    transition: all 0.3s ease;
}

.social-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Przesuwamy o 50% w lewo i 50% do góry. 
       Dodatkowo dodaję 1px w dół (calc), bo optycznie fonty często "ciążą" ku górze */
    transform: translate(-50%, calc(-50% + 1px)); 
    font-size: 18px;
    line-height: 1;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
}

.social-btn:hover {
    background-color: var(--accent-color, #C5A47E);
    border-color: var(--accent-color, #C5A47E);
    color: #fff;
    box-shadow: 0 5px 15px rgba(197, 168, 130, 0.3);
    transform: translateY(-3px); /* Efekt uniesienia */
}
/* Nadpisujemy transform dla hovera, żeby nie psuć layoutu */
.social-btn:hover i {
     transform: translate(-50%, calc(-50% + 1px)); /* Utrzymujemy pozycję ikony */
}

/* Mapa */
.contact-map-small {
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Prawa kolumna: Formularz */
.contact-form-wrapper {
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
    font-weight: 600;
    color: var(--text-dark, #333);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark, #333);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark, #333);
    background-color: #fbfbfb;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--accent-color, #C5A47E);
    box-shadow: 0 0 0 4px rgba(197, 168, 130, 0.1);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Walidacja */
.form-control.is-valid {
    border-color: var(--success-color, #28a745);
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2328a745' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.form-control.is-invalid {
    border-color: var(--error-color, #dc3545);
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23dc3545' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Checkbox RODO */
.checkbox-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--text-muted, #666);
    line-height: 1.5;
}

.checkbox-wrapper input {
    margin-top: 4px;
    accent-color: var(--accent-color, #C5A47E);
    width: 18px;
    height: 18px;
}

.checkbox-wrapper a {
    color: var(--text-dark, #333);
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    font-size: 1rem;
}

/* Responsywność */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-wrapper {
        order: -1; /* Formularz pierwszy na mobile? Zależy od strategii. Zwykle kontakt szybki (tel) pierwszy, potem formularz. Zostawmy standardowo. */
        padding: 32px;
    }
    
    .contact-map-small {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 60px 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 24px;
        border-radius: 16px;
    }
    
    .info-group {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hours-row {
        justify-content: center;
        gap: 20px;
    }
}

/* --- END contact.css --- */

/* --- START footer.css --- */
/* Footer Section - Premium Minimalism Refactoring */
#footer {
    background-color: #1A1A1A; /* Głęboka czerń/szarość */
    color: #e0e0e0;
    padding: 80px 0 30px;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Kolumna 1: Brand & Info */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: var(--font-secondary, serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1); /* Logo na biało */
}

.footer-desc {
    color: #a0a0a0;
    line-height: 1.6;
    max-width: 300px;
}

/* Dane firmy (KRS/NIP) */
.company-details {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.company-details p {
    margin-bottom: 4px;
}

.company-details strong {
    color: #bbb;
    font-weight: 500;
}

/* Nagłówki kolumn */
.footer-column h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Listy linków */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color, #C5A47E);
    transform: translateX(5px);
}

/* Kontakt w stopce */
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #a0a0a0;
    margin-bottom: 16px;
}

.footer-contact i {
    color: var(--accent-color, #C5A47E);
    margin-top: 4px;
}

/* Socials w stopce */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background: var(--accent-color, #C5A47E);
    transform: translateY(-3px);
}

/* Copyright Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #666;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #666;
    font-size: 0.85rem;
}

.legal-links a:hover {
    color: #fff;
}

/* Responsywność */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo-wrapper {
        justify-content: flex-start;
    }
}

/* --- COOKIES POPUP --- */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: #1A1A1A; /* Ciemne tło spójne ze stopką */
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(255,255,255,0.1);
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.9rem;
    color: #e0e0e0; /* Jasny tekst */
    line-height: 1.5;
}

.cookie-text strong {
    color: #fff;
    font-weight: 600;
}

.cookie-text a {
    color: var(--accent-color, #C5A47E);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept {
    flex: 1;
    padding: 12px;
    background: var(--accent-color, #C5A47E); /* Złoty przycisk */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-accept:hover {
    background: #b39671;
    transform: translateY(-2px);
}

.btn-cookie-settings {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-settings:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 576px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }
}

/* --- END footer.css --- */

/* --- START announcement.css --- */
/* Announcement Bar */
.announcement-bar {
    background-color: #1A1A1A; /* Ciemne tło */
    color: #fff;
    padding: 10px 0;
    position: relative;
    z-index: 10001; /* Powyżej wszystkiego */
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#announcement-text {
    font-weight: 500;
    letter-spacing: 0.5px;
}

#close-announcement {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    position: absolute;
    right: 20px; /* Odstęp od prawej krawędzi kontenera */
    top: 50%;
    transform: translateY(-50%);
    transition: color 0.3s ease;
}

#close-announcement:hover {
    color: #C5A47E; /* Accent color */
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.8rem;
        padding: 12px 0;
    }
    
    .announcement-content {
        padding-right: 40px; /* Miejsce na X na mobile */
        justify-content: flex-start; /* Tekst od lewej */
        text-align: left;
    }
}


/* --- END announcement.css --- */

/* --- MAIN.CSS VARIABLES & GLOBAL --- */
/* Główny plik CSS importujący wszystkie pozostałe pliki */

/* Reset i style podstawowe */


/* Komponenty */











/* Zmienne kolorów i czcionek */
:root {
    --primary-color: #C5A882; /* Złoty */
    --primary-dark: #b69472;
    --primary-light: rgba(197, 168, 130, 0.2);
    --primary-lighter: rgba(197, 168, 130, 0.1);
    --primary-gradient: linear-gradient(90deg, rgba(197, 168, 130, 0), rgba(197, 168, 130, 1), rgba(197, 168, 130, 0));
    
    --secondary-color: #1A2942; /* Granatowy */
    --secondary-dark: #10192b;
    --secondary-light: rgba(26, 41, 66, 0.1);
    --secondary-overlay: linear-gradient(145deg, rgba(26, 41, 66, 0.85) 0%, rgba(26, 41, 66, 0.9) 100%);
    
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --light-bg: #f9f9f9;
    
    --text-color: #333333;
    --text-light: #555555;
    --text-muted: #777777;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 8px 15px rgba(197, 168, 130, 0.3);
    
    /* UX Colors */
    --success-color: #28a745;
    --error-color: #dc3545;
}

/* Style dla elementu html i body */
html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    /* Padding bottom dla sticky bar na mobile */
    padding-bottom: 0;
}

/* Style kontenera */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Ogólne style dla sekcji */
section {
    position: relative;
    padding: 90px 0;
}

/* Style dla stopki aby zawsze była na dole strony */
main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

/* Style dla nagłówków */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-family: var(--font-secondary);
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Style dla linków */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Style dla przycisków */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1.5px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-white:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 15px;
}

/* Efekt animacji fadein */
.fadeIn {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animacja pulsowania */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile Conversion Bar (Sticky Bottom) */
.mobile-conversion-bar {
    display: none; /* Domyślnie ukryty na desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding-bottom: env(safe-area-inset-bottom); /* Dla iPhone X+ */
}

.conversion-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 8px;
}

.btn-call {
    background-color: var(--white);
    color: var(--secondary-color);
    border-top: 1px solid #eee;
}

.btn-quote {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Helper klasy */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-white {
    color: var(--white);
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-white {
    background-color: var(--white);
}

.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: 3rem; }

.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: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

/* Media queries dla responsywności */
@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }
    
    section {
        padding: 80px 0;
    }
    
    h2 {
        font-size: 34px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }
    
    section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Pokaż sticky bar na mobile */
    .mobile-conversion-bar {
        display: flex;
    }
    
    /* Dodaj padding do body, żeby bar nie zasłaniał treści */
    body {
        padding-bottom: 54px; /* Wysokość bara + inset */
    }
    
    /* Podnieś cookie consent nad sticky bar */
    .cookie-consent {
        bottom: 54px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}


