/* ===================================
   WB-AUTO - EXCLUSIVE PRESTIGE STYLES
   =================================== */

:root {
    --color-black: #0a0a0a;
    --color-black-light: #1a1a1a;
    --color-black-lighter: #2a2a2a;
    --color-red: #dc143c;
    --color-red-light: #ff1a1a;
    --color-red-dark: #a01030;
    --color-white: #ffffff;
    --color-gray: #888888;
    --color-gray-light: #f0f0f0;
    --color-gold: #d4af37;
    
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Montserrat', 'Arial Black', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(220, 20, 60, 0.2);
    --shadow-red: 0 5px 20px rgba(220, 20, 60, 0.4);
    --shadow-gold: 0 5px 20px rgba(212, 175, 55, 0.3);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-black);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background 0.3s ease;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--color-gold);
}

.cursor-follower.hover {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(212, 175, 55, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.9) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--color-red);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    position: relative;
    z-index: 10;
}

.logo-wb {
    color: var(--color-red);
    text-shadow: var(--shadow-red);
}

.logo-auto {
    color: var(--color-white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
    z-index: -1;
}

.nav-menu a:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.nav-menu a:hover {
    color: var(--color-white);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: var(--color-red);
    text-shadow: var(--shadow-red);
}

/* FIX: Poprawiony przycisk hamburgera - dodano position: relative i cursor: pointer */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative; /* KLUCZOWA POPRAWA - z-index działa poprawnie */
    touch-action: manipulation; /* Poprawia responsywność dotyku na mobile */
    -webkit-tap-highlight-color: transparent; /* Usuwa niebieskie tło po kliknięciu na mobile */
    outline: none;
    min-width: 44px; /* Minimum 44px dla łatwiejszego klikania palcem */
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

/* Animacja hamburgera na X gdy menu otwarte */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230a0a0a" width="1200" height="600"/><path fill="%231a1a1a" d="M0 300L50 325L100 300L150 275L200 300L250 325L300 300L350 275L400 300L450 325L500 300L550 275L600 300L650 325L700 300L750 275L800 300L850 325L900 300L950 275L1000 300L1050 325L1100 300L1150 275L1200 300V600H0V300Z"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(220,20,60,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: particle-float 15s infinite linear;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes particle-float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, -100px) rotate(90deg); }
    50% { transform: translate(200px, 0) rotate(180deg); }
    75% { transform: translate(100px, 100px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red) 0%, var(--color-gold) 100%);
    animation: line-grow 1s ease-out 0.5s forwards;
}

@keyframes line-grow {
    to { width: 100%; }
}

.highlight {
    color: var(--color-red);
    text-shadow: var(--shadow-red);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.hero:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 1s forwards;
}

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    cursor: none;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-red);
}

.btn-primary .btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.btn-primary:hover .btn-shimmer {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--color-red);
    border: 2px solid var(--color-red);
}

.btn-outline:hover {
    background: var(--color-red);
    color: var(--color-white);
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid var(--color-black-lighter);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -20px;
    width: 1px;
    height: 200%;
    background: linear-gradient(transparent, var(--color-red), transparent);
    opacity: 0.3;
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-red);
    text-shadow: var(--shadow-red);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red) 0%, var(--color-gold) 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Services */
.services-preview {
    background: var(--color-black-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-black);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid var(--color-black-lighter);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--color-red);
    box-shadow: var(--shadow-hover);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(220,20,60,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    background: var(--color-black);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial {
    background: var(--color-black-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--color-red);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.testimonial-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.5s ease;
}

.testimonial:hover .testimonial-line {
    width: 100%;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    text-shadow: var(--shadow-gold);
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-red);
}

.testimonial-text {
    position: relative;
    padding-left: 1rem;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-red);
    opacity: 0.5;
}

.testimonials-link {
    text-align: center;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    transform: translateY(0);
    will-change: transform;
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
}

.parallax-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    transform: scale(1.1);
    will-change: transform;
    transition: transform 0.5s ease-out;
}

.cta-section:hover .cta-bg {
    transform: scale(1);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--color-black-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-red);
    margin-bottom: 1rem;
    text-shadow: var(--shadow-red);
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-red);
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}

.footer-section:hover h4::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-section a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-red);
    transition: width 0.3s;
}

.footer-section a:hover {
    color: var(--color-red);
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-black-lighter);
    color: var(--color-gray);
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    background: var(--color-black-light);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(220,20,60,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--color-red);
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--color-red);
}

.about-text ul {
    list-style: none;
    margin-top: 1rem;
}

.about-text li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-black-lighter);
    transition: var(--transition);
}

.about-text li:hover {
    padding-left: 1rem;
    color: var(--color-red);
}

.about-stats {
    position: sticky;
    top: 120px;
}

.stat-box {
    background: var(--color-black);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    text-align: center;
    border: 1px solid var(--color-black-lighter);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.stat-box:hover {
    border-color: var(--color-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220,20,60,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box .stat-number {
    font-size: 3rem;
    text-shadow: var(--shadow-red);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-black-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    border: 1px solid var(--color-red);
    box-shadow: var(--shadow-hover);
}

/* Portfolio */
.portfolio-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--color-black-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-slow);
    position: relative;
    border: 1px solid var(--color-black-lighter);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-red);
    box-shadow: var(--shadow-hover);
}

.portfolio-image {
    position: relative;
    padding-bottom: 56.25%;
    background: var(--color-black);
    overflow: hidden;
}

.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img-before {
    transform: scale(1.1);
}

.portfolio-img-after {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-img-after {
    opacity: 1;
}

.portfolio-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black-lighter) 0%, var(--color-black) 100%);
}

.placeholder-text {
    text-align: center;
    color: var(--color-gray);
    font-size: 1.1rem;
    transition: var(--transition);
}

.portfolio-item:hover .placeholder-text {
    color: var(--color-red);
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--color-red);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-red);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-black-lighter);
    transition: var(--transition);
}

.contact-item:hover {
    border-bottom-color: var(--color-red);
}

.contact-icon {
    font-size: 2rem;
    transition: transform 0.3s;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2);
}

.contact-item h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--color-red);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-top: 0.25rem;
}

.contact-cta {
    background: var(--color-black-light);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid var(--color-black-lighter);
    transition: var(--transition);
}

.contact-cta:hover {
    border-color: var(--color-red);
    transform: translateY(-5px);
}

.contact-cta h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--color-red);
}

.contact-map h2 {
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--color-red);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: var(--shadow-red);
}

/* Process */
.contact-process {
    background: var(--color-black-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    /* FIX: Pokazujemy przycisk hamburgera na mobile */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-black);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .header-cta .cta-phone {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cta-buttons,
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .services-grid,
    .testimonials-carousel,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
    
    /* Dodatkowe poprawki dla małych ekranów */
    .nav-toggle {
        margin-left: auto;
    }
    
    .header-cta {
        display: none; /* Ukrywamy telefon w headerze na bardzo małych ekranach, skoro jest w menu */
    }
}
/* ===================================
   COOKIES BANNER
   =================================== */

.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--color-red);
    padding: 1.5rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 30px rgba(220, 20, 60, 0.2);
}

.cookies-banner.show {
    transform: translateY(0);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookies-text {
    flex: 1;
}

.cookies-text p {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.5;
}

.cookies-link {
    color: var(--color-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
}

.cookies-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-red);
    transition: width 0.3s;
}

.cookies-link:hover::after {
    width: 100%;
}

.cookies-btn {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    color: var(--color-white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: var(--shadow-red);
}

.cookies-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cookies-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cookies-btn:hover::before {
    left: 100%;
}

/* Responsive Cookies */
@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookies-btn {
        width: 100%;
        max-width: 300px;
    }
}