:root {
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --gold: #D4AF37;
    --gold-hover: #b5952f;
    --red-accent: #d32f2f;
    --text-light: #f5f5f5;
    --text-gray: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; scroll-behavior: smooth; overflow-x: hidden; }

/* HEADER */
header { display: flex; justify-content: space-between; align-items: center; padding: 25px 8%; background-color: rgba(10,10,10,0.95); position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid #222; }
.logo { font-size: 26px; font-weight: 900; color: var(--gold); letter-spacing: 2px; line-height: 1.2; }
.logo span { font-size: 11px; display: block; color: var(--text-light); font-weight: 300; letter-spacing: 3px; text-transform: uppercase; margin-top: 3px; }
nav a { color: var(--text-light); text-decoration: none; margin-left: 35px; font-size: 13px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; transition: color 0.3s; }
nav a:hover { color: var(--red-accent); }

/* HERO SECTION & SLIDER */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: space-between; padding: 120px 8% 0; background: linear-gradient(135deg, #0a0a0a 40%, #1a1505 100%); flex-wrap: wrap; }
.hero-content { flex: 1; min-width: 300px; max-width: 600px; margin-bottom: 50px; z-index: 2; }
.hero h1 { font-size: 55px; font-weight: 900; line-height: 1.1; margin-bottom: 25px; color: var(--gold); text-transform: uppercase; letter-spacing: -1px; }
.hero h1 span { color: var(--text-light); }
.hero p { font-size: 22px; margin-bottom: 40px; color: var(--text-gray); font-weight: 300; font-style: italic; border-left: 3px solid var(--red-accent); padding-left: 20px; }

.hero-image-box { flex: 1; min-width: 300px; display: flex; justify-content: flex-end; position: relative; }
.slider-container { width: 100%; max-width: 500px; height: 600px; position: relative; overflow: hidden; border-radius: 10px; border: 2px solid var(--gold); box-shadow: -20px 20px 0px rgba(211, 47, 47, 0.15); }
.slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease-in-out; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Przyciski slidera */
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.6); color: white; border: none; padding: 15px 10px; cursor: pointer; font-size: 20px; z-index: 10; transition: 0.3s; }
.slider-btn:hover { background: var(--red-accent); }
.slider-btn.prev { left: 0; border-radius: 0 5px 5px 0; }
.slider-btn.next { right: 0; border-radius: 5px 0 0 5px; }

.btn { display: inline-block; padding: 18px 45px; background-color: var(--gold); color: #000; text-decoration: none; font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 2px; transition: all 0.3s ease; border: 1px solid var(--gold); }
.btn:hover { background-color: var(--red-accent); border-color: var(--red-accent); color: #fff; box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3); }

/* METAMORFOZY */
.metamorfozy-section { padding: 100px 8%; background-color: #0a0a0a; border-top: 1px dashed #222; }
.metamorfozy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; }
.meta-card { background-color: var(--bg-card); padding: 20px; border-radius: 8px; border-bottom: 3px solid var(--gold); transition: 0.3s; }
.meta-card:hover { border-color: var(--red-accent); transform: translateY(-5px); }

.meta-photo { width: 100%; height: 400px; background-color: #2a2a2a; margin-bottom: 20px; display: flex; gap: 5px; border-radius: 4px; overflow: hidden; }
.meta-photo img { width: 100%; height: 100%; object-fit: cover; }
.meta-photo.split img { width: 50%; }

/* Klasy dla pustych miejsc */
.placeholder-card { opacity: 0.6; }
.placeholder-card:hover { opacity: 1; }
.placeholder-bg { align-items: center; justify-content: center; color: #555; font-weight: bold; border: 2px dashed #444; background-color: transparent; }

.meta-card h3 { color: var(--text-light); font-size: 20px; margin-bottom: 10px; text-transform: uppercase; }
.meta-card h3 span { color: var(--red-accent); }
.meta-card p { color: var(--text-gray); font-size: 14px; line-height: 1.6; }

/* SERVICES */
.services-section { padding: 120px 8%; background-color: #0f0f0f; }
.section-title { font-size: 40px; color: var(--text-light); margin-bottom: 70px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
.section-title span { color: var(--gold); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.service-card { background-color: var(--bg-card); padding: 50px 40px; border: 1px solid #222; transition: all 0.4s ease; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-10px); border-color: var(--red-accent); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background-color: var(--red-accent); transform: scaleY(0); transition: transform 0.4s ease; transform-origin: bottom; }
.service-card:hover::before { transform: scaleY(1); }
.service-card h3 { color: var(--gold); font-size: 22px; margin-bottom: 15px; text-transform: uppercase; font-weight: 800; }
.service-card p { color: var(--text-gray); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.service-link { color: var(--red-accent); text-decoration: none; font-weight: bold; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

/* FOOTER / CONTACT */
.footer { padding: 80px 8%; background-color: #050505; border-top: 1px solid #222; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-col { flex: 1; min-width: 280px; }
.footer-col h4 { color: var(--gold); font-size: 20px; margin-bottom: 25px; text-transform: uppercase; font-weight: 800; letter-spacing: 1px; }
.footer-col p { color: var(--text-gray); margin-bottom: 15px; font-size: 15px; font-weight: 300; }
.ig-link { display: inline-block; margin-top: 10px; color: #000; background-color: var(--gold); padding: 12px 25px; text-decoration: none; font-weight: 800; font-size: 14px; text-transform: uppercase; transition: 0.3s; }
.ig-link:hover { background-color: var(--red-accent); color: white; }

@media (max-width: 900px) {
    .hero { padding-top: 150px; text-align: center; }
    .hero-content { margin-bottom: 40px; }
    .hero p { border-left: none; border-bottom: 3px solid var(--red-accent); padding-bottom: 15px; }
    .hero-image-box { justify-content: center; }
}

/* =========================================
   STYLE DLA PODSTRONY CENNIK
   ========================================= */
.pricing-page { padding: 150px 8% 100px; background-color: var(--bg-dark); min-height: 100vh; }

.promo-banner { background: linear-gradient(135deg, var(--red-accent) 0%, #8a1c1c 100%); color: white; padding: 25px 40px; border-radius: 8px; text-align: center; max-width: 900px; margin: 0 auto 50px; box-shadow: 0 10px 30px rgba(211, 47, 47, 0.2); border: 1px solid #ff4d4d; }
.promo-banner h3 { font-size: 24px; font-weight: 900; margin-bottom: 10px; letter-spacing: 1px; }
.promo-banner p { font-size: 16px; font-weight: 500; }

.pricing-container { display: flex; flex-wrap: wrap; gap: 40px; max-width: 1200px; margin: 0 auto; justify-content: center; align-items: flex-start; }

.price-box { flex: 1; min-width: 320px; background-color: var(--bg-card); padding: 40px; border-radius: 12px; border: 1px solid #222; position: relative; }
.side-pricing { flex: 1; min-width: 320px; display: flex; flex-direction: column; gap: 40px; }

.price-box h2 { color: var(--text-light); font-size: 28px; text-transform: uppercase; margin-bottom: 5px; }
.price-box h2 span { color: var(--gold); }
.price-subtitle { color: var(--text-gray); font-size: 14px; margin-bottom: 30px; border-bottom: 1px dashed #333; padding-bottom: 15px; }

.price-list { list-style: none; }
.price-list li { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid #1a1a1a; transition: 0.3s; }
.price-list li:last-child { border-bottom: none; }
.price-list li:hover { padding-left: 10px; background-color: rgba(255,255,255,0.02); }

/* Wyróżniony popularny pakiet */
.price-list li.recommended { border-left: 3px solid var(--gold); padding-left: 15px; background-color: rgba(212, 175, 55, 0.05); }

.p-name { color: var(--text-light); font-weight: 700; font-size: 16px; line-height: 1.4; }
.p-name small { display: block; color: var(--text-gray); font-weight: 400; font-size: 12px; margin-top: 3px; }

.p-cost { color: var(--gold); font-weight: 900; font-size: 20px; text-align: right; line-height: 1.4; }
.p-cost small { display: block; color: var(--text-gray); font-weight: 400; font-size: 12px; margin-top: 3px; }

/* =========================================
   SEKCJA: O MNIE
   ========================================= */
.about-section { padding: 100px 8%; background-color: var(--bg-card); border-top: 1px solid #222; }
.about-container { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-image-placeholder { flex: 1; min-width: 300px; height: 500px; background-color: #222; border: 2px solid var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-gray); font-weight: bold; text-align: center; box-shadow: 15px 15px 0px rgba(211, 47, 47, 0.1); }
.about-text { flex: 1; min-width: 320px; }
.about-text p { color: var(--text-gray); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.about-text strong { color: var(--text-light); }
.about-text em { color: var(--gold); font-style: normal; font-weight: bold; }

/* =========================================
   SEKCJA: OPINIE GOOGLE
   ========================================= */
.reviews-section { padding: 100px 8%; background-color: #050505; border-top: 1px dashed #222; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.review-card { background-color: var(--bg-card); padding: 40px 30px; border-radius: 8px; border: 1px solid #222; position: relative; transition: 0.3s; }
.review-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.05); }
.stars { color: var(--gold); font-size: 24px; margin-bottom: 20px; letter-spacing: 2px; }
.review-text { color: var(--text-light); font-size: 15px; font-style: italic; line-height: 1.7; margin-bottom: 25px; }
.review-author { color: var(--text-gray); font-weight: 700; text-transform: uppercase; font-size: 13px; border-top: 1px solid #333; padding-top: 15px; }

/* =========================================
   PŁYWAJĄCY PRZYCISK WHATSAPP
   ========================================= */
.floating-wa { position: fixed; bottom: 30px; right: 30px; background-color: var(--gold); color: #000; padding: 15px 25px; border-radius: 50px; font-weight: 800; font-size: 14px; text-transform: uppercase; text-decoration: none; display: flex; align-items: center; gap: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.5); z-index: 9999; transition: all 0.3s ease; border: 2px solid var(--gold); }
.floating-wa:hover { background-color: var(--bg-dark); color: var(--gold); transform: scale(1.05); }
.wa-icon { font-size: 20px; }

@media (max-width: 768px) {
    .floating-wa { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 12px; }
    .about-image-placeholder { height: 400px; box-shadow: none; }
}


/* =========================================
   SEKCJA: OPINIE GOOGLE (PRZESUWNIK)
   ========================================= */
.reviews-section { padding: 100px 8%; background-color: #050505; border-top: 1px dashed #222; overflow: hidden; }

/* Konfiguracja suwaka */
.reviews-slider { 
    display: flex; 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
    overflow-x: auto; /* Pozwala na przewijanie w poziomie */
    scroll-snap-type: x mandatory; /* Przyciąga kafelki do środka */
    padding-bottom: 30px; /* Miejsce na suwak */
}

/* Wygląd paska przewijania (żeby ładnie wyglądał na komputerze) */
.reviews-slider::-webkit-scrollbar { height: 8px; }
.reviews-slider::-webkit-scrollbar-track { background: #111; border-radius: 10px; }
.reviews-slider::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

.review-card { 
    background-color: var(--bg-card); 
    padding: 40px 30px; 
    border-radius: 8px; 
    border: 1px solid #222; 
    position: relative; 
    transition: 0.3s; 
    min-width: 320px; /* Minimalna szerokość kafelka w suwaku */
    flex: 0 0 auto; /* Zapobiega zwężaniu się kafelków */
    scroll-snap-align: center; /* Przyciąganie */
}

.review-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.05); }
.stars { color: var(--gold); font-size: 24px; margin-bottom: 20px; letter-spacing: 2px; }
.review-text { color: var(--text-light); font-size: 15px; font-style: italic; line-height: 1.7; margin-bottom: 25px; }
.review-author { color: var(--text-gray); font-weight: 700; text-transform: uppercase; font-size: 13px; border-top: 1px solid #333; padding-top: 15px; }

/* =========================================
   SEKCJA: OPINIE (EMBED / IFRAME)
   ========================================= */
.reviews-section { padding: 100px 8%; background-color: #050505; border-top: 1px dashed #222; }
.reviews-embed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.reviews-embed-grid iframe { box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: 0.3s; }
.reviews-embed-grid iframe:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); border: 1px solid var(--gold) !important; }

/* =========================================
   SEKCJA: FAQ (SEO BOOSTER)
   ========================================= */
.faq-section { padding: 100px 8%; background-color: var(--bg-card); border-top: 1px solid #222; }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item { background-color: var(--bg-dark); padding: 30px; border-radius: 8px; border-left: 4px solid var(--gold); transition: 0.3s; }
.faq-item:hover { border-color: var(--red-accent); transform: translateX(5px); }
.faq-item h3 { color: var(--gold); font-size: 18px; margin-bottom: 12px; font-weight: 700; line-height: 1.4; }
.faq-item p { color: var(--text-gray); font-size: 15px; line-height: 1.7; }

/* (Usunięto stare kody klasy .reviews-slider i .review-card) *//* =========================================
   FORMULARZ KONTAKTOWY
   ========================================= */
.contact-form-section { padding: 80px 8%; background-color: var(--bg-dark); border-top: 1px dashed #222; }
.form-container { max-width: 600px; margin: 0 auto; background-color: var(--bg-card); padding: 40px; border-radius: 8px; border: 1px solid #222; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; background-color: #0a0a0a; border: 1px solid #333; border-radius: 4px; color: var(--text-light); font-size: 15px; font-family: 'Montserrat', sans-serif; transition: 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #666; }

/* =========================================
   PRAWNY PASEK I BANER COOKIES
   ========================================= */
.legal-bottom-bar { background-color: #000; padding: 15px 8%; text-align: center; border-top: 1px solid #111; }
.legal-bottom-bar p { color: #555; font-size: 12px; margin: 0; }
.legal-bottom-bar a { color: #777; text-decoration: none; transition: 0.3s; }
.legal-bottom-bar a:hover { color: var(--gold); }

.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(10, 10, 10, 0.95); border-top: 1px solid var(--gold); padding: 15px 8%; display: none; justify-content: space-between; align-items: center; z-index: 10000; flex-wrap: wrap; gap: 15px; }
.cookie-banner p { color: var(--text-gray); font-size: 13px; margin: 0; flex: 1; min-width: 250px; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-btn { padding: 10px 25px; font-size: 12px; }


.logo-img {
    height: 50px;       /* Dopasuj tę wysokość (np. między 40px a 60px) do wielkości swojego menu */
    width: auto;        /* Dzięki temu proporcje logo nie zostaną zniekształcone */
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s ease; /* Subtelny efekt przy najechaniu myszką */
}

/* Opcjonalnie: delikatne powiększenie lub rozświetlenie logo po najechaniu myszką */
.logo-link:hover .logo-img {
    transform: scale(1.03); 
}


.floating-contact-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Wysuwanie po najechaniu na cały kontener */
.floating-contact-container:hover .contact-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.contact-btn:hover { transform: scale(1.05); }
.whatsapp-btn { background-color: #25D366; }
.instagram-btn { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.main-contact-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 50px;
    background-color: #000; /* Dopasuj do koloru swojej strony */
    color: white;
    border: none;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}