/* =========================================
   1. VARIABLES & SETUP
   ========================================= */
:root {
  --red: #dd3023;
  --red-hover: #ec3325;
  --black: #050505;
  --dark-gray: #111111;
  --text-main: #ffffff;      
  --text-muted: #ffffff;
  --text-placeholder: #aab0b3;  
  --font-header: 'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
}

html { 
    scroll-behavior: smooth; 
    background-color: var(--black); 
    width: 100%;
}

body { 
	width: 100%; 
    position: relative; 
    background-color: var(--black); 
    color: var(--text-main); 
    font-family: var(--font-body); 
    font-size: 17px; 
    line-height: 1.6; 
}

main { 
	width: 100%; 
    overflow-x: hidden; 
    max-width: 100vw;
}

/* =========================================
   2. TYPOGRAPHY & HELPERS
   ========================================= */
h1, h2, h3, h4, h5 { font-family: var(--font-header); font-weight: 700; text-transform: uppercase; color: #ffffff; letter-spacing: 1px; }
h1 { font-size: 4.5rem; line-height: 1; }
h2 { font-size: 3rem; }
h3 { font-size: 1.8rem; }
/* UWAGA: Bootstrap narzuca wlasny kolor dla .text-muted uzywajac !important, musimy to nadpisac */
.text-muted { color: #d4d4d4 !important; } 
.text-white-50 { color: rgba(255, 255, 255, 0.75); }
.display-3, .display-4, .display-5, .display-6 { font-family: var(--font-header); font-weight: 700; }
.appearance-none { appearance: none; }
.pe-none { pointer-events: none; }

/* ... RESZTA HELPERÓW ... */
p { color: var(--text-muted); }
a { text-decoration: none; transition: 0.3s; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
.text-red { color: var(--red); }
.bg-black { background-color: var(--black); }
.bg-red { background-color: var(--red); }
.bg-dark-gray { background-color: var(--dark-gray); }
.text-stroke { -webkit-text-stroke: 1px #fff; color: transparent; paint-order: normal; }
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.section { padding: 100px 0; }
.sub-header { display: block; color: var(--red); font-weight: 700; letter-spacing: 3px; font-size: 14px; margin-bottom: 10px; }

/* =========================================
   3. COMPONENTS
   ========================================= */
.btn-sport { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; font-weight: 600; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1px; font-size: 14px; border: none; border-radius: 50px; transition: all 0.3s ease; position: relative; overflow: hidden; text-decoration: none; }
.btn-sport.sm { padding: 8px 22px; font-size: 13px; border-radius: 30px; }
.btn-sport.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 15px rgba(217, 4, 41, 0.4); }
.btn-sport.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.2); color: #fff; }
.btn-sport.btn-white { background: #fff; color: #000; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2); }
.social-btn { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); }


/* =========================================
   4. HEADER & NAV
   ========================================= */
.top-bar { background-color: var(--dark-gray); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 20px 0; font-size: 15px; }
.info-pill { color: #ccc; letter-spacing: 0.5px; margin-right: 20px; }

#header { z-index: 1050; padding: 25px 0; background: rgba(5,5,5, 0.98); border-bottom: 1px solid rgba(255,255,255,0.08); transition: 0.4s; }
#header.scrolled { padding: 10px 0; background: #000; }

.navbar-brand { font-family: var(--font-header); font-size: 32px; font-weight: 800; font-style: italic; color: #fff; letter-spacing: -1px; display: flex; align-items: center; padding: 0; margin: 0; height: auto; transition: all 0.4s ease; }
.navbar-brand .dot { color: var(--red); }
.navbar-logo { height: 50px; width: auto; max-height: none; max-width: none; flex-shrink: 0; object-fit: contain; display: block; transition: 0.3s; }
#header.scrolled .navbar-logo { height: 45px; }

.navbar-nav .nav-link { font-size: 14px; font-weight: 600; text-transform: uppercase; margin: 0 2px; padding: 8px 12px; color: #e0e0e0; letter-spacing: 1px; transition: color 0.3s ease; }
.navbar-nav .nav-link.active { color: var(--red); text-shadow: 0 0 10px rgba(217, 4, 41, 0.3); }

.dropdown-menu { background: #1a1a1a; border: 1px solid #333; border-radius: 15px; padding: 10px; margin-top: 15px; }
.dropdown-item { color: #ddd; padding: 10px 15px; border-radius: 8px; font-size: 15px; border: none; transition: 0.3s; }

.btn-nav-premium { display: inline-flex; align-items: center; background: var(--red); border: 1px solid var(--red); color: #fff; padding: 6px 6px 6px 24px; border-radius: 50px; font-family: var(--font-header); font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; transition: 0.3s; }
.btn-nav-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: #fff; color: var(--red); border-radius: 50%; margin-left: 15px; font-size: 12px; transition: 0.3s; }

/* =========================================
   5. SECTIONS
   ========================================= */
/* Hero Section */
.hero-section { position: relative; min-height: 70vh; display: flex; align-items: center; width: 100%; flex-wrap: wrap; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 0% 50%; }
.overlay-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(0deg, var(--dark-gray) 0%, rgba(5, 5, 5, 0.7) 40%, rgba(0, 0, 0, 0.2) 100%); z-index: 1; }
.hero-title { font-size: 5.5rem; font-weight: 900; line-height: 0.95; text-transform: uppercase; font-style: italic; letter-spacing: -2px; margin-bottom: 20px; }
.text-outline { -webkit-text-stroke: 2px #fff; color: transparent; }
.glamour-pill { padding: 8px 20px; border-radius: 50px; background: rgb(0 0 0 / 50%); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); display: inline-flex; flex-wrap: wrap; align-items: center; gap: 12px;}
.glow-dot { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 10px var(--red), 0 0 5px var(--red); animation: pulse 2s infinite; }
.divider-line { display: block; width: 1px; height: 12px; background: rgba(255, 255, 255, 0.3); }

@keyframes pulse { 
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7); } 
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(217, 4, 41, 0); } 
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 4, 41, 0); } 
}

.modern-action-card { display: inline-flex; align-items: center; padding: 8px 24px 8px 8px; border-radius: 50px; text-decoration: none; transition: 0.3s; }
.mac-icon { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; margin-right: 15px; transition: 0.3s; }
.mac-text { display: flex; flex-direction: column; justify-content: center; }
.mac-title { font-family: var(--font-header); font-size: 15px; font-weight: 800; line-height: 1.1; letter-spacing: 1px; }

.red-glow { background: rgba(217, 4, 41, 0.95); border: 1px solid var(--red); color: #fff; box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2); }
.red-glow .mac-icon { background: #fff; color: var(--red); }
.glass-glow { background: rgb(17 17 17); border: 1px solid rgba(255, 255, 255, 0.15); color: #fff; }
.glass-glow .mac-icon { background: rgba(255, 255, 255, 0.1); color: #fff; }

.floating-steps-overlap { position: absolute; width: 100%; bottom: 0; left: 0; transform: translateY(50%); z-index: 10; box-sizing: border-box; }
.glassmorphism-dark { background: #080808; border: 1px solid rgba(255, 255, 255, 0.1); }
.step-item { padding: 10px 15px; transition: 0.3s; }

@media (min-width: 992px) {
    .step-divider { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 30px; }
}

/* About Section */
#about { padding-top: 150px; }
.bg-decoration-text { position: absolute; top: 50%; left: 0; transform: translateY(-50%); font-size: 20vw; font-weight: 900; color: rgba(255,255,255,0.03); font-family: var(--font-header); line-height: 0; pointer-events: none; z-index: 0; width: 100%; text-align: center; }
.about-collage { position: relative; padding-bottom: 50px; padding-right: 30px; }
.img-main-box { position: relative; z-index: 1; border-radius: 20px; overflow: hidden; }
.img-detail-box { position: absolute; bottom: 0; right: 0; width: 55%; z-index: 2; border: 5px solid var(--dark-gray); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.trust-badge { position: absolute; top: 30px; left: -20px; background: var(--red); color: #fff; padding: 20px; text-align: center; z-index: 3; box-shadow: 5px 5px 20px rgba(0,0,0,0.3); font-family: var(--font-header); border-radius: 15px; }
.quote-box { border-left: 4px solid var(--red); padding: 20px 25px; font-style: italic; color: #fff; font-size: 19px; background: rgba(255,255,255,0.05); border-radius: 0 15px 15px 0; margin-bottom: 30px; }
.signature { border-left: 1px solid #444; padding-left: 20px; }

/* Fleet & Accessories */
.card-sport-compact { position: relative; display: flex; flex-direction: column; height: 540px; border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.08); background: #050505; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); transform: translateZ(0); }
.card-sport-compact.locked { pointer-events: none; }
.csc-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.csc-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1); }
.csc-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.3) 100%); }
.csc-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; height: 100%; padding: 20px; }
.csc-header { background: rgba(5, 5, 5, 0.65); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 14px; padding: 15px 20px; align-self: flex-start; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.csc-title { color: #fff; font-size: 22px; margin: 0 0 2px 0; font-weight: 800; line-height: 1.1; }
.csc-subtitle { font-family: var(--font-body); font-size: 13px; display: block; }
.csc-bottom { width: 100%; background: rgba(5, 5, 5, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.csc-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 15px; margin-bottom: 15px; text-align: center; }
.csc-label { display: block; font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.csc-val { display: block; color: #fff; font-size: 14px; font-weight: 700; font-family: var(--font-header); }
.csc-footer { display: flex; justify-content: space-between; align-items: center; }
.csc-btn { color: #aaa; font-size: 14px; font-weight: 600; letter-spacing: 1px; transition: 0.3s; }

.config-acc-card { transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); background: var(--dark-gray); border: 1px solid rgba(255,255,255,0.1); border-radius: 15px; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.acc-img-wrap { position: relative; height: 230px; overflow: hidden; }
.acc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; transform: translateZ(0); will-change: transform; }
.acc-price-pill { position: absolute; top: 20px; right: 20px; padding: 8px 18px; border-radius: 50px; font-family: var(--font-header); font-weight: 800; font-size: 15px; z-index: 5; box-shadow: 0 5px 15px rgba(217, 4, 41, 0.4); background: var(--red); color: #fff;}
.acc-price-pill span { font-size: 11px; opacity: 0.8; font-weight: 500; }
.acc-features li { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.btn-info-premium { display: flex; align-items: center; justify-content: space-between; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; padding: 6px 6px 6px 20px; color: #fff; text-decoration: none; font-family: var(--font-header); font-weight: 700; font-size: 13px; letter-spacing: 1px; transition: all 0.3s ease; }
.btn-circle { width: 34px; height: 34px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; transition: all 0.3s ease; }

/* Quality Section */
.line-decoration { position: absolute; top: 0; right: 10%; width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, var(--red), transparent); opacity: 0.3; }
.quality-steps { display: flex; flex-direction: column; gap: 20px; }
.q-step-card { background: #0b0b0b; border: 1px solid #222; padding: 25px; display: flex; align-items: center; gap: 25px; transition: 0.3s; border-radius: 15px; }
.q-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--red); flex-shrink: 0; }
.quality-image-box { position: relative; padding: 15px; border: 1px solid #333; border-radius: 20px; }
.main-q-img { filter: contrast(1.1) saturate(0) brightness(0.9); transition: 0.5s; width: 100%; border-radius: 15px; transform: translateZ(0); }
.floating-info-card { position: absolute; bottom: -30px; left: -30px; background: rgba(20, 20, 20, 0.98); padding: 25px; width: 280px; border: 1px solid #333; border-top: 4px solid var(--red); box-shadow: 0 20px 50px rgba(0,0,0,0.6); color: #fff; border-radius: 15px; transform: translateZ(0); will-change: transform; }

/* VIP Offer Section */
.vip-services-strip { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); padding: 15px; border-radius: 100px; }
.v-service-item { display: flex; align-items: center; gap: 10px; padding: 10px 20px; background: rgba(255, 255, 255, 0.03); border-radius: 50px; border: 1px solid transparent; transition: 0.3s; }
.v-service-item i { color: var(--red); font-size: 14px; }
.v-service-item span { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }

.vip-card-compact { background: #0d0d0d; border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 30px; overflow: hidden; height: 100%; transition: all 0.4s ease; }
.v-card-img { position: relative; height: 250px; overflow: hidden; }
.v-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s ease; transform: translateZ(0); }
.v-chauffeur-tag { position: absolute; bottom: 15px; left: 15px; background: var(--red); color: #fff; padding: 6px 15px; border-radius: 50px; font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.v-card-body { padding: 30px; }

.slim-voucher-bar { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); padding: 25px 40px; border-radius: 30px; margin-top: 40px; }
.v-icon-gift { width: 50px; height: 50px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; box-shadow: 0 0 20px rgba(217, 4, 41, 0.3); }

/* Gallery Section */
.gallery-item-wrap { position: relative; display: block; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); background-color: #0a0a0a; cursor: pointer; transform: translateZ(0); }
.preview-large { height: 380px; }
.preview-medium { height: 380px; }
.gallery-item-wrap img { width: 100%; height: 100%; object-fit: cover; transform: translateZ(0); will-change: transform; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.zoom-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.5); width: 60px; height: 60px; background: var(--red); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; opacity: 0; z-index: 3; box-shadow: 0 0 20px rgba(217, 4, 41, 0.5); transition: all 0.3s ease; will-change: transform, opacity; }
.gallery-item-wrap::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); opacity: 0; z-index: 1; transition: opacity 0.3s ease; will-change: opacity; }

/* Reviews & FAQ */
.review-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); padding: 40px; border-radius: 30px; height: 100%; position: relative; transition: 0.3s; }
.review-text { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.7); font-style: italic; min-height: 100px; }
.swiper-pagination-bullet { background: #fff; opacity: 0.2; }
.swiper-pagination-bullet-active { background: var(--red); opacity: 1; width: 25px; border-radius: 10px; }

.faq-accordion .accordion-item { background-color: transparent; border: 1px solid #222; border-radius: 12px; margin-bottom: 15px; overflow: hidden; transition: 0.3s; }
.faq-accordion .accordion-button { background-color: #111; color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 18px; padding: 20px 25px; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { background-color: #161616; color: var(--red); box-shadow: inset 0 -1px 0 rgba(255,255,255,0.05); }
.faq-accordion .accordion-body { background-color: #111; color: var(--text-muted); padding: 25px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 16px; }

/* Contact Section */
.contact-highlight-box { background: rgba(0, 0, 0, 0.4); border-left: 4px solid var(--red); backdrop-filter: blur(10px); transition: all 0.3s ease; }
.highlight-bg-gradient { background: linear-gradient(135deg, rgba(221, 48, 35, 0.1) 0%, transparent 100%); }
.contact-info-card { display: flex; align-items: center; gap: 20px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); padding: 20px 25px; border-radius: 16px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.cic-icon { width: 52px; height: 52px; background: rgba(221, 48, 35, 0.1); color: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; transition: all 0.4s ease; }
.cic-content { display: flex; flex-direction: column; }
.cic-label { font-size: 11px; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); letter-spacing: 1.5px; margin-bottom: 2px; font-weight: 600; }
.cic-value { font-size: 20px; font-weight: 700; color: #fff; transition: color 0.3s ease; }
.contact-btn-solid { background-color: var(--red); color: #fff; border: 1px solid var(--red); font-family: var(--font-header); font-size: 16px; letter-spacing: 1px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(221, 48, 35, 0.2); }
.contact-btn-outline { background-color: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.15); font-family: var(--font-header); font-size: 16px; letter-spacing: 1px; transition: all 0.3s ease; }
.map-action-container { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); }
.map-wrapper { background: #111; }
.map-wrapper iframe { filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(120%); transition: filter 0.5s ease; }

/* Footer & Others */
.footer { border-top: 1px solid #222; padding: 80px 0 30px; }
.footer-brand { font-family: var(--font-header); font-size: 28px; font-weight: 800; font-style: italic; color: #fff; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #cccccc; font-size: 15px; transition: 0.3s; }

.overlay-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 20px 20px; opacity: 0.08; pointer-events: none; }
.section-separator-skew { position: absolute; bottom: -1px; left: 0; width: 100%; height: 100px; background: var(--black); clip-path: polygon(0 100%, 100% 0, 100% 100%); z-index: 3; pointer-events: none; }


/* =========================================
   8. WIDGETY & CIASTECZKA
   ========================================= */

/* Floating WhatsApp (Widoczny tylko na desktopie) */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366; 
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite;
}

.floating-whatsapp:hover {
  background-color: #1ebe5d;
  color: #fff;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* UKRYCIE WHATSAPPA NA MOBILE */
@media (max-width: 991px) {
  .floating-whatsapp {
    display: none !important; 
  }
}

.cookie-strip {
  position: fixed;
  bottom: -100px; /* Ukryty poza ekranem */
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1050;
  padding: 18px 0;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
  opacity: 0;
}

.cookie-strip.show {
  bottom: 0;
  opacity: 1;
}

.cookie-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cookie-link {
  color: var(--red); /* Nawiązanie do Twojego czerwonego motywu */
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cookie-link:hover {
  color: #fff;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
}

.btn-cookie-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-cookie-solid {
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  padding: 8px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.btn-cookie-solid:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
}

/* Wersja mobilna */
@media (max-width: 767px) {
  .cookie-strip {
    padding: 20px 0;
  }
  .cookie-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .cookie-text {
    font-size: 13px;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  .btn-cookie-outline, .btn-cookie-solid {
    flex: 1;
    padding: 10px 10px;
  }
}

/* =========================================
   12. GLIGHTBOX CUSTOMIZATION (Tylko zdjęcie)
   ========================================= */

/* Ukrycie dolnego panelu z tekstem (data-title) */
.gslide-description {
  display: none !important;
}

/* Usunięcie białego tła i ewentualnych cieni wokół samego zdjęcia */
.gslide-inner-content {
  background: transparent !important;
  box-shadow: none !important;
}

/* =========================================
   6. HOVER EFFECTS (DESKTOP ONLY)
   ========================================= */
@media (hover: hover) and (pointer: fine) {
    /* Global & Buttons */
	.btn-sport.btn-red:hover { background: var(--red-hover); box-shadow: 0 8px 25px rgba(217, 4, 41, 0.6); }
    .btn-sport.btn-outline:hover { border-color: var(--red); background: var(--red); }
	.btn-sport.btn-outline:hover .text-red { color: #ffffff; }
    .btn-sport.btn-white:hover { background: var(--red-hover); box-shadow: 0 8px 25px rgba(217, 4, 41, 0.6); color: #fff; }
    .social-btn:hover { background: var(--red); box-shadow: 0 5px 15px rgba(217, 4, 41, 0.4); }
    
    /* Header */
    .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus { color: var(--red); text-shadow: 0 0 10px rgba(217, 4, 41, 0.3); }
    .dropdown-item:hover { background: var(--red); color: #fff; }
    .btn-nav-premium:hover { background: #ef233c; border-color: #ef233c; box-shadow: 0 8px 25px rgba(217, 4, 41, 0.5); color: #fff; }
    .btn-nav-premium:hover .btn-nav-icon { transform: scale(1.1); }
    
    /* Hero & Action Cards */
    .modern-action-card:hover .mac-icon { transform: scale(1.05); }
    .red-glow:hover { background: var(--red); box-shadow: 0 8px 20px rgba(217, 4, 41, 0.4); }
    .glass-glow:hover { background: rgb(8 8 8); border: 1px solid rgba(217, 4, 41, 0.95); }
    .step-item:hover { transform: translateY(-3px); }
    
    /* Fleet & Accessories */
    .card-sport-compact:hover { border-color: var(--red); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8); }
    .card-sport-compact:hover .csc-bg img { transform: scale(1.08); }
    .card-sport-compact:hover .csc-btn { color: var(--red); }
    .config-acc-card:hover { border-color: var(--red); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); transform: translateY(-8px); }
    .config-acc-card:hover .acc-img-wrap img { transform: scale(1.1); }
    .config-acc-card:hover .acc-img-overlay { opacity: 1; }
    .btn-info-premium:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--red); color: #fff; }
    .btn-info-premium:hover .btn-circle { transform: rotate(-45deg); background: #fff; color: var(--red); }
    
    /* Sections & Cards */
    .q-step-card:hover { border-color: #444; transform: translateX(10px); background: #161616; }
    .quality-image-box:hover .main-q-img { filter: contrast(1.1) saturate(1) brightness(1); }
    .v-service-item:hover { background: rgba(217, 4, 41, 0.1); border-color: var(--red); }
    .vip-card-compact:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
    .vip-card-compact:hover .v-card-img img { transform: scale(1.1); }
    .gallery-item-wrap:hover img { transform: scale(1.08) translateZ(0); }
    .gallery-item-wrap:hover::after { opacity: 1; }
    .gallery-item-wrap:hover .zoom-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    .gallery-item-wrap:hover { border-color: var(--red); }
    .review-card:hover { background: rgba(255, 255, 255, 0.04); border-color: var(--red); }
    .faq-accordion .accordion-item:hover { border-color: #333; }
    .footer-links a:hover { color: var(--red); padding-left: 5px; }

    /* Contact Section Hovers */
    .contact-highlight-box:hover { transform: translateX(5px); border-color: rgba(255, 255, 255, 0.3); background: rgba(0, 0, 0, 0.6); }
    .contact-info-card:hover { background: rgba(221, 48, 35, 0.05); border-color: rgba(221, 48, 35, 0.4); transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); }
    .contact-info-card:hover .cic-icon { background: var(--red); color: #fff; box-shadow: 0 5px 15px rgba(221, 48, 35, 0.4); transform: scale(1.05); }
    .contact-info-card:hover .cic-value { color: var(--red); }
    .contact-btn-solid:hover { background-color: var(--red-hover); border-color: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(221, 48, 35, 0.4); color: #fff; }
    .contact-btn-outline:hover { background-color: rgba(255, 255, 255, 0.05); transform: translateY(-2px); border-color: #fff; color: #fff; }
    .map-wrapper:hover iframe { filter: invert(90%) hue-rotate(180deg) brightness(100%) contrast(100%); }
}


/* =========================================
   7. RESPONSIVE MEDIA QUERIES
   ========================================= */

@media (min-width: 1200px) { .container { max-width: 1180px; } }
@media (min-width: 1400px) { .container { max-width: 1380px; } }
@media (min-width: 1600px) { .container { max-width: 1520px; } }

@media (max-width: 1199px) {
    .navbar-logo { height: 45px; }
    #header.scrolled .navbar-logo { height: 40px; }
    .nav-btn-wrapper { margin-top: 20px; margin-bottom: 10px; width: 100%; }
    .btn-nav-premium { width: 100%; justify-content: space-between; padding: 12px 20px; }
    .navbar-collapse { background: #080808; position: absolute; top: 100%; left: 0; width: 100%; padding: 20px; border-bottom: 3px solid var(--red); box-shadow: 0 15px 40px rgba(0,0,0,0.9); z-index: 9999; }
    .navbar-nav { margin-bottom: 20px; }
    .navbar-nav .nav-link { padding: 15px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); font-size: 16px; }
    .navbar-nav .nav-item:last-child .nav-link { border-bottom: none; }
    .navbar-toggler { border: none; padding: 0; outline: none; }
    .fa-bars-staggered { font-size: 26px; color: #fff; }
	
	.dropdown-menu {
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    .dropdown-item {
        white-space: normal !important; /* Tekst łamie się do nowej linii tylko na mobile */
        line-height: 1.4;
        word-wrap: break-word;
    }
}

@media (max-width: 991px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.2rem; }
    .display-3, .display-4, .display-5, .display-6 { font-size: 2rem; }
    
    .container { padding-left: 30px; padding-right: 30px; }
    
    /* OVERRIDE: Wymuszone z powodu klasy .h-100 uzytej w kodzie HTML */
    .hero-section > .container.h-100 {
        height: auto !important; 
        flex-grow: 0;
        padding-top: 120px;
    }

    /* OVERRIDE: Klasa .position-absolute oraz .px-3 z Bootstrapa w HTML narzuca wlasne style z !important */
    .floating-steps-overlap { 
        position: relative !important; 
        bottom: auto; 
        transform: none; 
        margin-top: 40px;
        margin-bottom: 0; 
        z-index: 10; 
        padding-left: 20px !important; 
        padding-right: 20px !important; 
        width: 100%;
    }
    
    /* OVERRIDE: Klasy .p-3 .p-lg-4 z HTML narzucaja paddingi w Bootstrapie */
    .steps-bar { 
        flex-direction: column;
        gap: 0;
        background: #0b0b0b;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 10px 20px !important; 
    }

    .step-item { 
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
        padding: 20px 5px; 
        width: 100%; 
        margin: 0; 
    }
    .step-item:last-child {
        border-bottom: none;
    }
    .step-divider { border: none; }
    
    /* About & Quality Sections */
    #about { padding-top: 80px; } 
    #about .row.g-5 { --bs-gutter-y: 1rem; }
    .about-collage { padding-right: 0; padding-bottom: 0; margin-bottom: 15px; }
    .img-detail-box { position: relative; width: 100%; margin-top: -30px; margin-left: 0; border: 4px solid var(--dark-gray); }
    .trust-badge { top: -20px; left: 10px; }
    .line-decoration { display: none; }
    .quality-image-box { margin-bottom: 40px; padding: 10px; }
    .floating-info-card { position: relative; bottom: 0; left: 0; width: 100%; margin-top: 20px; box-sizing: border-box; }
    
    /* VIP & Misc */
    /* OVERRIDE: d-flex w HTML narzuca "display: flex !important" */
    .vip-services-strip { display: grid !important; grid-template-columns: 1fr 1fr; gap: 15px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 24px; padding: 20px; margin-bottom: 40px; }
    
    .v-service-item { background: transparent; border: none; padding: 10px 5px; display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; border-radius: 12px; margin-bottom: 0; }
    .v-service-item i { width: 45px; height: 45px; background: rgba(217, 4, 41, 0.1); color: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; margin: 0; box-shadow: 0 4px 10px rgba(217, 4, 41, 0.2); }
    .v-service-item span { font-size: 12px; color: #e0e0e0; text-align: center; line-height: 1.2; white-space: normal; font-weight: 500; }
    .bg-decoration-text { font-size: 20vw; }
    .preview-large, .preview-medium { height: 280px; }
    
    /* Footer */
    .footer .col-lg-5 { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .footer .navbar-brand { justify-content: center; width: 100%; }
    .footer .socials { justify-content: center; width: 100%; margin-top: 5px; }
}

@media (max-width: 767px) {
    body { font-size: 16px; }
    .section { padding: 60px 0; }
    
    /* Hero Fixes na najmniejsze ekrany */
    /* OVERRIDE: znów klasa .h-100 z HTML narzuca 100% wysokosci */
    #hero .container.h-100 { padding-top: 100px; padding-bottom: 0; height: auto !important; }
    
    .overlay-gradient { background: linear-gradient(0deg, var(--dark-gray) 0%, rgba(5, 5, 5, 0.7) 40%, rgba(0, 0, 0, 0.2) 100%); }
    .hero-bg img { object-position: center 60%; }
    .hero-tags { display: none; }
    .hero-title { font-size: 2.8rem; line-height: 1.05; letter-spacing: -1px; text-align: left; margin-top: 0; margin-bottom: 15px; }
    
    /* Hero Actions Fix */
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; margin-top: 20px; display: flex; align-items: stretch; }
    .modern-action-card { width: 100%; padding: 8px 20px 8px 8px; justify-content: flex-start; border-radius: 50px; }
    .mac-icon { width: 38px; height: 38px; font-size: 15px; margin-right: 15px; }
    .mac-title { font-size: 13px; } 

    /* Other Mobile Fixes */
    .slim-voucher-bar { padding: 25px 20px; text-align: center; }
    .slim-voucher-bar .d-flex.align-items-center.gap-3 { flex-direction: column; }
    .footer-links li { margin-bottom: 15px; }
    .footer-links a { display: block; padding: 8px 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .map-wrapper { height: 350px; min-height: 350px; }
	
	.gnext, .gprev {
      display: block !important;
      background: rgba(0, 0, 0, 0.6) !important;
      border-radius: 50%;
      width: 40px !important;
      height: 40px !important;
  }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.4rem; }
    .section-separator-skew { height: 60px; }
    .acc-img-wrap { height: 180px; }
    .v-card-img { height: 200px; }
    .card-sport-compact { height: 480px; }
    .csc-specs { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}





/* =========================================
   14. DEDICATED GALLERY PAGE (Czysta lupa na środku)
   ========================================= */

.gallery-item-wrap-v2 {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #111;
  aspect-ratio: 4/3; 
  will-change: transform;
  transform: translateZ(0); 
}

.gallery-item-wrap-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* Równomierne zaciemnienie zamiast gradientu od dołu */
.gallery-overlay-v2 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Półprzezroczysta czerń */
  display: flex;
  align-items: center;     /* Centrowanie w pionie */
  justify-content: center; /* Centrowanie w poziomie */
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.gallery-overlay-v2 .info {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Lupa idealnie na środku */
.preview-link {
  background: var(--red);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transform: scale(0.5); /* Startowo pomniejszona */
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 20px rgba(221, 48, 35, 0.5);
  text-decoration: none;
}

/* EFEKTY HOVER DLA GALERII (Tylko komputery) */
@media (hover: hover) {
  .gallery-item-wrap-v2:hover .gallery-overlay-v2 { opacity: 1; }
  .gallery-item-wrap-v2:hover img { transform: scale(1.08); }
  .gallery-item-wrap-v2:hover .preview-link { transform: scale(1); } /* Powiększa lupę przy najechaniu na ZDJĘCIE */
  .preview-link:hover { background: #fff; color: var(--red); }     /* Zmiana koloru jak najedziesz DOKŁADNIE na lupę */
}

/* WIDOK MOBILNY */
@media (max-width: 991px) {
  .gallery-overlay-v2 { opacity: 1; background: rgba(0, 0, 0, 0.2); }
  .preview-link { display: none; } /* Na telefonie klika się w całe zdjęcie palcem, po co zasłaniać lupą? */
}

/* =========================================
   15. GALLERY CTA TILE (Nowoczesny przycisk)
   ========================================= */
.gallery-cta-modern {
  position: relative;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  transition: all 0.4s ease;
  overflow: hidden;
}

.gallery-cta-modern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(221, 48, 35, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.gallery-cta-modern > * {
  position: relative;
  z-index: 1;
}

.cta-pulse-ring {
  width: 60px;
  height: 60px;
  background: rgba(221, 48, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  animation: pulse-wa 2s infinite; 
}

@media (hover: hover) {
  .gallery-cta-modern:hover {
    border-color: rgba(221, 48, 35, 0.5);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), inset 0 0 40px rgba(221, 48, 35, 0.1);
    transform: translateY(-5px);
  }
}