/* --- FUNDAMENTY --- */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
:root { --bg-color: #000; --text-main: #f5f5f7; --text-muted: #86868b; --accent: #2997ff; --font-stack: 'Inter', sans-serif; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg-color); color: var(--text-main); font-family: var(--font-stack); line-height: 1.6; overflow-x: hidden; width: 100%; }

/* --- REVEAL ANIMACJA --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- SEPARATORY MIĘDZY SEKCJAMI --- */
.section-divider {
    height: 1px;
    width: 60%;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, #333, transparent);
    opacity: 0.5;
}

/* --- NAVBAR --- */
.navbar { position: fixed; top: 0; width: 100%; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(0,0,0,0.85); backdrop-filter: blur(15px); z-index: 2000; }
.logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 25px; list-style: none; }
.nav-links a { color: var(--text-main); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* --- BURGER --- */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 2100; }
.bar { display: block; width: 25px; height: 2px; background: #fff; transition: 0.3s; }

/* --- HERO --- */
.hero-section { text-align: center; padding: 220px 20px 100px; background: radial-gradient(circle at center, #111, #000); }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; letter-spacing: -2px; margin-bottom: 25px; }
.hero-desc { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); margin: 0 auto 50px; max-width: 800px; }
.text-gradient { background: linear-gradient(90deg, #fff, #888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 2px; font-size: 0.8rem; display: block; margin-bottom: 15px; text-transform: uppercase; }

/* --- PRZYCISKI --- */
.hero-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.button { display: inline-block; padding: 14px 35px; border-radius: 30px; text-decoration: none; font-weight: 600; background: #fff; color: #000; transition: 0.3s; border: none; cursor: pointer; text-align: center; }
.button-outline { background: transparent; border: 1px solid #444; color: #fff; }
.button:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.1); }

/* --- GALERIA 1:1 --- */
.gallery-wrapper { margin: 60px auto 0; max-width: 1400px; padding: 0 20px; }
.gallery-section-title { text-align: center; font-size: 1.6rem; color: var(--text-main); margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; }
.gallery-section-title::after { content: ''; display: block; width: 50px; height: 3px; background: var(--accent); margin: 15px auto 0; border-radius: 2px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; width: 100%; justify-content: center; }
.photo-card { border-radius: 20px; overflow: hidden; background: #111; aspect-ratio: 1 / 1; position: relative; cursor: pointer; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: 0.5s ease; }
.photo-card:hover img { transform: scale(1.05); }

/* --- SIATKI I STREFY --- */
.portfolio-section { padding: 100px 5%; width: 100%; display: flex; flex-direction: column; align-items: center; }
.dark-bg { background-color: #050505; }
.sticky-header { width: 100%; max-width: 1000px; text-align: center; margin: 0 auto 60px; }
.sticky-header h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; }

.zones-wrapper { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; width: 100%; }
.zone-premium-card { flex: 1; min-width: 280px; max-width: 450px; background: #0a0a0a; border: 1px solid #1a1a1a; padding: 30px; border-radius: 20px; text-align: left; position: relative; }
.zone-accent { width: 4px; height: 30px; background: var(--accent); position: absolute; left: 0; top: 30px; border-radius: 2px; }
.zone-emoji { font-size: 2rem; display: block; margin-bottom: 20px; margin-left: 10px; }

.modern-grid { width: 100%; max-width: 1200px; display: flex; flex-direction: column; gap: 20px; }
.glow-card { background: #0d0d0d; border: 1px solid #1a1a1a; border-radius: 24px; padding: 40px; transition: 0.4s ease; }
.glow-card:hover { border-color: var(--accent); box-shadow: 0 0 30px rgba(41, 151, 255, 0.1); }
.card-indicator { width: 40px; height: 4px; background: var(--accent); border-radius: 2px; margin-bottom: 20px; }
.grid-main-card { width: 100%; }
.grid-sub-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

/* --- CENNIK --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 20px; width: 100%; max-width: 1200px; }
.pricing-card { background: #0d0d0d; border: 1px solid #1a1a1a; padding: 40px 20px; text-align: center; border-radius: 24px; transition: 0.4s ease; position: relative; display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 0 30px rgba(41, 151, 255, 0.1); }
.pricing-card.featured { border: 2px solid var(--accent); transform: scale(1.05); z-index: 2; }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 4px 15px; font-size: 0.75rem; font-weight: 800; border-radius: 20px; white-space: nowrap; }
.package-duration { font-size: 0.8rem; color: var(--accent); font-weight: 700; margin-bottom: 15px; letter-spacing: 1px; }
.package-price { font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 15px; }
.package-price span { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.package-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.pricing-footer { text-align: center; max-width: 800px; margin: 40px auto 0; color: var(--text-muted); }

/* --- ASYSTA --- */
.asysta-section { padding: 120px 5%; background: #000; width: 100%; }
.asysta-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 60px; }
.asysta-img-box { flex: 1; min-width: 300px; border-radius: 25px; overflow: hidden; }
.asysta-img-box img { width: 100%; display: block; object-fit: cover; }
.asysta-content-box { flex: 1; min-width: 300px; }

/* --- KONTAKT I FORMULARZ --- */
.contact-section-premium { padding: 120px 5%; width: 100%; text-align: center; }
.contact-container { width: 100%; max-width: 1200px; margin: 0 auto; }
.contact-wrapper { 
    max-width: 600px; 
    margin: 40px auto 50px; 
    padding: clamp(20px, 5vw, 40px); 
    text-align: left; 
    background: #0d0d0d; 
    border: 1px solid #1a1a1a; 
    border-radius: 24px; 
    position: relative; 
    transition: 0.4s ease; 
}
.contact-wrapper:hover { border-color: var(--accent); box-shadow: 0 0 30px rgba(41, 151, 255, 0.1); }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; color: #fff; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; }

/* BLOKADA ZOOMOWANIA W SAFARI / IOS */
input[type="text"],
input[type="email"],
textarea,
.form-input { 
    width: 100%; 
    padding: 15px; 
    background: rgba(0, 0, 0, 0.4); 
    border: 1px solid #222; 
    color: #fff; 
    border-radius: 12px; 
    outline: none; 
    transition: 0.3s ease; 
    font-family: inherit; 
    resize: vertical;
    font-size: 16px !important; /* Pancerne zabezpieczenie */
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 15px rgba(41, 151, 255, 0.15); }
.submit-btn { width: 100%; border: none; cursor: pointer; text-align: center; }

/* Komunikaty formularza */
.form-success-msg { background: rgba(46, 204, 113, 0.1); border: 1px solid #2ecc71; color: #2ecc71; padding: 15px; border-radius: 12px; margin-bottom: 25px; text-align: center; font-weight: 600; }
.form-error-msg { background: rgba(231, 76, 60, 0.1); border: 1px solid #e74c3c; color: #e74c3c; padding: 15px; border-radius: 12px; margin-bottom: 25px; text-align: center; font-weight: 600; }

.direct-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 40px; text-align: center; }
.large-link { font-size: clamp(1.1rem, 2vw, 1.5rem); color: #fff; text-decoration: none; font-weight: 600; transition: 0.3s; }
.large-link:hover { color: var(--accent); }
.label { display: block; font-size: 0.8rem; color: var(--accent); text-transform: uppercase; margin-bottom: 10px; }

/* --- SOCIAL --- */
.social-section { padding: 100px 5%; text-align: center; width: 100%; }
.social-btns { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 40px; }
.social-btn { padding: 15px 40px; border-radius: 12px; text-decoration: none; color: #fff; font-weight: 700; transition: 0.3s; min-width: 200px; text-align: center; }
/* KOLORY SOCIAL MEDIA */
.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.facebook { background: #1877F2; }
.social-btn:hover { opacity: 0.9; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.1); }

/* --- FAQ --- */
.faq-container { width: 100%; max-width: 1000px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #222; }
.faq-question { background: none; border: none; color: #fff; width: 100%; padding: 25px 0; font-size: 1.2rem; cursor: pointer; display: flex; justify-content: space-between; font-weight: 600; text-align: left; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.4s ease; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 25px; }

/* --- STOPKA --- */
.main-footer { padding: 80px 5% 40px; background: #050505; border-top: 1px solid #111; width: 100%; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; text-align: left; }
.footer-box h4 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-box p { color: var(--text-muted); font-size: 0.9rem; }
.footer-box a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.footer-box a:hover { color: var(--accent); }
.footer-bottom { max-width: 1200px; margin: 60px auto 0; padding-top: 30px; border-top: 1px solid #1a1a1a; text-align: center; color: #444; font-size: 0.8rem; }

/* --- MODAL REGULAMINU --- */
.modal { display: none; position: fixed; z-index: 5000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); backdrop-filter: blur(15px); padding: 20px; overflow-y: auto; }
.modal-content { background: #0f0f0f; margin: 40px auto; padding: clamp(20px, 5vw, 60px); max-width: 800px; border-radius: 30px; border: 1px solid #222; position: relative; }
.modal-header { margin-bottom: 40px; border-bottom: 1px solid #222; padding-bottom: 20px; }
.modal-header h2 { font-size: clamp(2rem, 4vw, 2.5rem); color: #fff; }
.modal-subtitle { color: var(--accent); font-size: 0.8rem; letter-spacing: 2px; font-weight: 700; }
.reg-section { margin-bottom: 35px; }
.reg-section h3 { font-size: 1.1rem; margin-bottom: 15px; display: flex; align-items: center; color: #fff; }
.reg-section h3 span { color: var(--accent); font-size: 0.8rem; margin-right: 15px; border: 1px solid var(--accent); padding: 2px 8px; border-radius: 6px; }
.reg-section p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 10px; }
.reg-section strong { color: #fff; }
.close-modal { position: absolute; top: 20px; right: 25px; font-size: 30px; cursor: pointer; color: var(--text-muted); }

/* --- LIGHTBOX --- */
.lightbox { position: fixed; z-index: 5000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.98); display: none; justify-content: center; align-items: center; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 85vh; border-radius: 10px; }
.close-lightbox { position: absolute; top: 15px; right: 20px; font-size: 30px; cursor: pointer; color: #fff; }

/* --- WIDOK MOBILNY --- */
@media (max-width: 1000px) {
    .hamburger { display: flex; flex-direction: column; gap: 5px; z-index: 2100; }
    .nav-links { 
        position: fixed; left: -100%; top: 70px; background: #000; 
        width: 100%; height: 100vh; flex-direction: column; 
        align-items: center; padding-top: 50px; transition: 0.4s; 
    }
    .nav-links.active { left: 0; }
    .nav-links a { font-size: 1.2rem; padding: 10px; }
    
    .pricing-card.featured { transform: scale(1); }
    .asysta-container { flex-direction: column; text-align: center; }
    .button-outline { margin-left: 0; margin-top: 15px; }
}

/* --- ELEMENT POBOCZNY --- */
#scrollTopBtn { position: fixed; bottom: 30px; right: 30px; display: none; width: 50px; height: 50px; background: var(--accent); color: #fff; border: none; border-radius: 50%; z-index: 3000; cursor: pointer; justify-content: center; align-items: center; font-size: 20px; transition: 0.3s; }
#scrollTopBtn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(41, 151, 255, 0.3); }