/* ===================================

VYLTRIX ECHO - COMPLETE FINAL CSS

Z WSZYSTKIMI POPRAWKAMI

=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --black-light: #0D0D0D;
    --charcoal: #161616;
    --dark: #1F1F1F;
    --gold: #B8956C;
    --gold-light: #C9A877;
    --gold-dark: #A37F5A;
    --white: #FFFFFF;
    --white-soft: #FAFAFA;
    --gray-light: #B5B5B5;
    --gray: #8A8A8A;
    --gray-dark: #5A5A5A;
    --border: rgba(184, 149, 108, 0.2);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 35px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 40px rgba(184, 149, 108, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
    position: relative;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ===================================
   ANIMACJE @KEYFRAMES
=================================== */

@keyframes particleFloat {
    0% {
        transform: translateY(110vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) translateX(40px) scale(1.5);
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(-40px) scale(0.5);
        opacity: 0;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes textShine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(184, 149, 108, 0.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   TŁO STATYCZNE
=================================== */

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(184, 149, 108, 0.08) 48%, rgba(184, 149, 108, 0.08) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(184, 149, 108, 0.08) 48%, rgba(184, 149, 108, 0.08) 52%, transparent 52%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(184, 149, 108, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(184, 149, 108, 0.04) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* ===================================
   ANIMOWANE WARSTWY
=================================== */

.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
    box-shadow: 0 0 20px rgba(184, 149, 108, 1);
}

.particle:nth-child(1) { left: 10%; animation-duration: 15s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-duration: 18s; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-duration: 16s; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-duration: 17s; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-duration: 19s; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-duration: 16s; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-duration: 15s; animation-delay: 1.5s; }
.particle:nth-child(8) { left: 80%; animation-duration: 18s; animation-delay: 2.5s; }
.particle:nth-child(9) { left: 90%; animation-duration: 17s; animation-delay: 4.5s; }
.particle:nth-child(10) { left: 95%; animation-duration: 16s; animation-delay: 0.5s; }

.grid-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(184, 149, 108, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(184, 149, 108, 0.15) 0%, transparent 25%);
    animation: glowPulse 5s ease-in-out infinite;
}

/* ===================================
   CONTAINER
=================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    position: relative;
    z-index: 2;
}

section {
    padding: clamp(4rem, 10vw, 7rem) 0;
    position: relative;
    z-index: 2;
}

/* ===================================
   NAVIGATION
=================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--black-light);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--gold);
}

.brand-tag {
    font-size: 0.68rem;
    color: var(--gray);
    letter-spacing: 0.01em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white-soft);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-social {
    display: flex;
    gap: 0.5rem;
}

.nav-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 0.8rem;
    transition: all 0.25s ease;
}

.nav-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.nav-cta {
    padding: 0.65rem 1.6rem;
    border-radius: 25px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===================================
   HERO Z ANIMACJAMI
=================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.hero-inner {
    max-width: 880px;
    padding: 0 1rem;
}

.hero-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.hero-logo {
    width: clamp(400px, 30vw, 680px);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    animation: logoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(184, 149, 108, 0.25));
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.2rem;
    border-radius: 25px;
    border: 1px solid var(--gold);
    background: var(--black-light);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hero h1 {
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.22;
    letter-spacing: -0.01em;
}

.hero h1 strong {
    background: linear-gradient(
        90deg,
        var(--gold-dark) 0%,
        var(--gold-light) 25%,
        var(--gold) 50%,
        var(--gold-light) 75%,
        var(--gold-dark) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s linear infinite;
}

.hero p {
    color: var(--gray-light);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
    padding: 0.95rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-sm);
    animation: buttonGlow 2s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1EBE57;
}

.hero-keywords {
    margin-top: 3rem;
    padding: 1.3rem 2rem;
    background: var(--charcoal);
    border-radius: 10px;
    border: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
}

.hero-keywords strong {
    color: var(--gold);
    font-weight: 600;
}

/* ===================================
   TYPOGRAPHY
=================================== */

.section-title {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-light);
    max-width: 580px;
    margin: 0 auto 3rem;
    font-size: 0.98rem;
    line-height: 1.65;
}

/* ===================================
   OFFER
=================================== */

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.offer-card {
    background: var(--charcoal);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.offer-card:nth-child(1) { animation-delay: 0.1s; }
.offer-card:nth-child(2) { animation-delay: 0.2s; }
.offer-card:nth-child(3) { animation-delay: 0.3s; }
.offer-card:nth-child(4) { animation-delay: 0.4s; }

.offer-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.offer-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.offer-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.offer-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 600;
}

.offer-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===================================
   PROCESS
=================================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    list-style: none;
}

.step {
    background: var(--charcoal);
    border-radius: 10px;
    padding: 2.3rem 2rem;
    border: 1px solid var(--border);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: var(--white);
    font-weight: 600;
}

.step p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   PORTFOLIO - PEŁNA SEKCJA Z POPRAWKAMI
   ======================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

/* Karta portfolio jako flexbox kolumna */
.portfolio-item {
    background: var(--charcoal);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;

    /* FLEXBOX dla wyrównania przycisków */
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

/* Miniaturka obrazu - stała wysokość */
.portfolio-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0; /* Nie kurczy się */
}

.portfolio-thumb::after {
    content: "\f00e"; /* Font Awesome eye icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-thumb:hover::after {
    opacity: 1;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Pokazuje górę strony zamiast środka */
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.05);
    opacity: 0.6;
}

/* Label na obrazku */
.portfolio-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.9rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--gold);
    border-radius: 20px;
    font-size: 0.68rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    z-index: 10;
}

/* Zawartość tekstowa - elastyczna wysokość */
.portfolio-content {
    padding: 1.8rem;

    /* FLEXBOX + auto margin dla przycisku */
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Zajmuje dostępną przestrzeń */
}

/* Tytuł */
.portfolio-content h3 {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

/* Opis - wypełnia przestrzeń */
.portfolio-content p {
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1; /* Wypełnia dostępną przestrzeń */
}

/* KLUCZ: Przycisk zawsze na dole */
.portfolio-content .btn-secondary {
    margin-top: auto; /* Automatycznie przesuwa na sam dół */
    align-self: flex-start; /* Nie rozciąga się na całą szerokość */
}

/* Responsive - większa wysokość na desktop */
@media (min-width: 768px) {
    .portfolio-thumb {
        height: 280px; /* Większa wysokość dla lepszej widoczności */
    }
}

/* ===================================
   BENEFITS
=================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--charcoal);
    border-radius: 10px;
    padding: 2rem 1.8rem;
    border-left: 3px solid var(--gold);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit i {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.benefit h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.benefit p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===================================
   PRICING - MNIEJSZY
=================================== */

.pricing-card {
    max-width: 480px;
    margin: 3rem auto 0;
    padding: 2.2rem 2rem;
    background: var(--charcoal);
    border-radius: 10px;
    border: 1px solid var(--gold);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: var(--black-light);
    border: 1px solid var(--gold);
    border-radius: 20px;
    font-size: 0.68rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--white);
    font-weight: 600;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pricing-price span {
    font-size: 0.4em;
    font-weight: 400;
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pricing-note {
    font-size: 0.78rem;
    color: var(--gray-dark);
    margin-top: 0.8rem;
}

.pricing-cta {
    margin-top: 1.5rem !important;
}

/* ===================================
   GUARANTEE
=================================== */

.guarantee-box {
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: var(--charcoal);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.guarantee-head {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--black-light);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.guarantee-item i {
    color: var(--gold);
    font-size: 1.15rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.guarantee-item span {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.5;
}

.guarantee-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===================================
   FAQ - Z POPRAWKĄ
=================================== */

.faq-item {
    background: var(--charcoal);
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-answer[hidden] {
    display: block !important;
    max-height: 0;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.65;
    font-size: 0.92rem;
}

/* ===================================
   CONTACT
=================================== */

.contact-box {
    max-width: 680px;
    margin: 2.5rem auto 0;
    background: var(--charcoal);
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 3rem 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--black-light);
    color: var(--white);
    font-family: inherit;
    font-size: 0.92rem;
    transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 1rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.quick-contact {
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: var(--black-light);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.quick-contact h3 {
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 240px);
    gap: 1.5rem;
    justify-content: center;
}

.contact-method {
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.contact-method:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.contact-method.phone {
    color: var(--gold);
}

.contact-method.whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.contact-method.whatsapp:hover {
    background: #1EBE57;
    border-color: #1EBE57;
}

.contact-method.email {
    color: var(--gray-light);
}

/* ===================================
   FOOTER
=================================== */

footer {
    padding: 4rem 0 2rem;
    background: var(--black-light);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-col p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.7rem;
}

.footer-menu a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: var(--gold);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: var(--gray);
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact i {
    color: var(--gold);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: 1rem;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--gray-dark);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ===================================
   LIGHTBOX
=================================== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    padding: 80px 60px 100px;
}

.lightbox-image-wrapper {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    border-radius: 4px;
    border: 1px solid var(--border);
    box-shadow: 0 25px 90px rgba(0, 0, 0, 0.8);
    background: var(--black-light);
}

.lightbox img {
    width: 100%;
    height: auto;
    display: block;
}

.lightbox-close,
.lightbox-nav {
    position: fixed;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-caption {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 13, 13, 0.95);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    max-width: 80%;
    z-index: 10000;
}

/* ===================================
   AUDIO TOGGLE
=================================== */

.audio-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--charcoal);
    border: 1px solid var(--gold);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.audio-toggle:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.08);
    box-shadow: var(--shadow-gold);
}

.audio-toggle.muted {
    border-color: var(--gray-dark);
    color: var(--gray-dark);
}

/* ===================================
   RESPONSIVE
=================================== */

/* === PLACEHOLDER - WIDOCZNY === */

input::placeholder,
textarea::placeholder {
    color: #8A8A8A !important;
    opacity: 1 !important;
    font-style: italic;
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: #5A5A5A !important;
}

@media (max-width: 1024px) {
    .nav-social {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: clamp(3rem, 8vw, 5rem) 0;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 75%;
        height: calc(100vh - 68px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: left 0.35s ease;
        border-right: 1px solid var(--border);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 90px;
    }

    .audio-toggle {
        width: 54px;
        height: 54px;
        font-size: 1.1rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .lightbox-content {
        padding: 60px 20px 90px;
    }

    .lightbox-close,
    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-inner {
        padding: 0.9rem 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .footer-social {
        width: 100%;
        justify-content: center;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ===================================
   MODAL POLITYKA PRYWATNOŚCI
   DODAJ NA SAM KONIEC SWOJEGO styles.css
=================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--charcoal);
    border-radius: 10px;
    border: 1px solid var(--gold);
    box-shadow: 0 25px 90px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1) rotate(90deg);
}

.modal-body {
    padding: 4rem 3rem 3rem;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #d4a574;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .modal-body {
        padding: 3.5rem 1.5rem 2rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

.footer-contact li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact li a:hover {
    color: var(--gold);
}

.footer-contact li a i {
    font-size: 1rem;
}
