:root {
  --bg-x: 0px;
  --bg-y: 0px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #00010E;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  position: relative;
}

.bg {
  position: fixed;
  inset: -40px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)),
    url("tlo2.png") center center / cover no-repeat;
  transform: translate(var(--bg-x), var(--bg-y)) scale(1.07);
  transition: transform 0.18s ease-out;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 70, 0, 0.18) 0%, rgba(255, 70, 0, 0.10) 15%, rgba(255, 70, 0, 0.00) 35%),
    radial-gradient(circle at 85% 50%, rgba(0, 200, 255, 0.22) 0%, rgba(0, 200, 255, 0.12) 15%, rgba(0, 200, 255, 0.00) 35%),
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.00) 40%, rgba(0, 0, 0, 0.30) 70%, rgba(0, 0, 0, 0.65) 100%);
}

.container {
  text-align: center;
  position: relative;
  z-index: 2;
  width: min(92vw, 900px);
  margin: 0 auto;
  padding: 2vh 10px 40px;
}

.logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 120px;
  width: 300px;
  height: 8px;
  background: linear-gradient(90deg, transparent, #050505, #000000, #050505, transparent);
  border-radius: 20px;
  filter: blur(6px);
  box-shadow:
    0 0 10px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(0, 0, 0, 0.6);
  opacity: 0.9;
  animation: neonLinePulse 4s ease-in-out infinite;
  pointer-events: none;
}

.logo {
  max-width: 500px;
  width: 90%;
  display: block;
  margin: 0 auto;
  opacity: 0.15;
  transform: translateX(-3px);
  transition: transform 0.65s ease, filter 0.65s ease, opacity 0.65s ease;
  animation:
    neonStart 2.4s ease-out forwards,
    neonIdle 3.8s ease-in-out infinite 2.4s;
}

.logo:hover {
  transform: translateX(-3x) scale(1.05);
  filter:
    brightness(1.25)
    saturate(1.25)
    drop-shadow(0 0 18px #00ffff)
    drop-shadow(0 0 35px #00eaff)
    drop-shadow(0 0 55px #0088ff)
    drop-shadow(0 0 40px #ff5500)
    drop-shadow(0 0 70px rgba(0, 200, 255, 0.6));
}

.tagline {
  margin: -58px 0 28px;
  font-size: 15px;
  letter-spacing: 3px;
  color: #ffffff;
  text-shadow:
    0 0 6px rgba(0, 200, 255, 0.35),
    0 0 14px rgba(0, 136, 255, 0.18);
}

a {
  text-decoration: none;
}

.phone {
  display: block;
  margin-top: -20px;
  font-size: 52px;
  letter-spacing: 3px;
  color: #ffffff;
  text-shadow:
    0 0 5px #000000,
    0 0 10px #00cfff,
    0 0 20px #00cfff,
    0 0 40px #0088ff;
  transition: all 0.25s ease;
}

.phone:hover {
  color: #ffffff;
  text-shadow:
    0 0 8px #25D366,
    0 0 16px #25D366,
    0 0 28px #25D366,
    0 0 48px #25D366;
}

.phone{
  position: relative;
}

.phone::after{
  content:"";
  display:block;
  width:40%;
  height:1px;
  margin:14px auto 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,0,0,0.8) 30%,
    rgba(255,0,0,1) 60%,
    rgba(255,0,0,0.8) 70%,
    transparent
  );

  box-shadow:
    0 0 6px rgba(255,0,0,0.6),
    0 0 12px rgba(255,0,0,0.4);
}
.email {
  display: block;
  margin-top: -5px;
  font-size: 16px;
  color: #ff4b4b;
  text-shadow:
    0 0 5px #ff0000,
    0 0 10px #ff0000,
    0 0 20px #ff0000,
    0 0 32px #ff2a2a;
  transition: all 0.25s ease;
}
.mail-white{
  color:#ffffff;
}

.mail-red{
  color:#ff4b4b;
}
.email:hover {
  color: #ffffff;
  text-shadow:
    0 0 8px #ffffff,
    0 0 16px #ff4b4b,
    0 0 28px #ff4b4b;
}

.email span {
  margin-right: 8px;
}

.social{
  margin-top: 22px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  position: relative;
  flex-wrap: wrap;
  padding-bottom: 24px;
}

.social::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:0;

  width:30%;
  height:1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,0,0,0.8) 20%,
    rgba(255,0,0,1) 50%,
    rgba(255,0,0,0.8) 60%,
    transparent
  );
}


.social a,
.social button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social svg {
  width: 34px;
  height: 34px;
  display: block;
  opacity: 0.9;
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
  filter:
    drop-shadow(0 0 6px #00cfff)
    drop-shadow(0 0 12px #0088ff);
}

.social svg:hover {
  opacity: 1;
  transform: scale(1.18);
  filter:
    drop-shadow(0 0 10px #00eaff)
    drop-shadow(0 0 22px #00eaff)
    drop-shadow(0 0 35px #0088ff);
}

.social-info {
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #7fdcff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, text-shadow 0.25s ease, color 0.25s ease;
  text-shadow:
    0 0 6px #00cfff,
    0 0 12px #0088ff;
}

.social-info:hover {
  transform: scale(1.18);
  color: #ffffff;
  text-shadow:
    0 0 10px #00ffff,
    0 0 22px #00eaff,
    0 0 35px #0088ff;
}

.kp-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 40px 20px;
  background: rgba(0, 5, 15, 0.72);
  backdrop-filter: blur(8px);
}

.kp-modal.show {
  display: flex;
}

.kp-modal-box {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding: 34px 28px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(8, 18, 35, 0.96), rgba(5, 10, 24, 0.96));
  border: 1px solid rgba(0, 238, 255, 0.22);
  color: #eafcff;
  box-shadow:
    0 0 18px rgba(0, 255, 255, 0.14),
    0 0 40px rgba(0, 140, 255, 0.12),
    0 24px 80px rgba(0, 0, 0, 0.55);
  animation: kpModalIn 0.28s ease;
}

.kp-modal-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  box-shadow: inset 0 0 24px rgba(0, 255, 255, 0.05);
}

.kp-modal-box h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #9ffcff;
  text-shadow:
    0 0 8px rgba(0, 255, 255, 0.25),
    0 0 18px rgba(0, 170, 255, 0.14);
}

.kp-modal-box p {
  margin: 0 0 14px;
  line-height: 1.75;
  font-size: 16px;
  color: rgba(230, 248, 255, 0.92);
}

.kp-close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #c9fbff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kp-close-btn:hover {
  background: rgba(0, 255, 255, 0.08);
  transform: scale(1.05);
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.12);
}

.projects {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  text-align: center;
  color: white;
}

.projects h2 {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #9ffcff;
  text-shadow:
    0 0 8px rgba(0, 255, 255, 0.25),
    0 0 18px rgba(0, 170, 255, 0.14);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  width: min(900px, 90%);
  margin: auto;
}

.projects-grid img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    0 0 10px rgba(0, 255, 255, 0.15),
    0 0 25px rgba(0, 120, 255, 0.1);
}

.projects-grid img:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 18px rgba(0, 255, 255, 0.25),
    0 0 35px rgba(0, 120, 255, 0.18);
}

.footer {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  padding: 10px 0 10px;
  text-align: center;
  color: #9bb7c9;
  border-top: 1px solid rgba(0, 255, 255, 0.15);
}

/* GŁÓWNY UKŁAD */
.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1;
}

/* RESET RÓŻNYCH WYSOKOŚCI */
.footer-row > * {
  margin: 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
}

/* LINK */
.footer-contact {
  margin: 0;
}

.footer-contact a {
  color: #7fdcff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-contact a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* COPYRIGHT */
.footer-copy {
  font-size: 12px;
  opacity: 0.6;
}


.footer-mail {
  color: #7fdcff;
  text-decoration: none;
}
@keyframes kpModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes neonLinePulse {
  0%, 100% {
    opacity: 0.78;
    transform: translateX(-50%) scaleX(0.96);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.03);
  }
}

@keyframes neonStart {
  0% {
    opacity: 0.05;
    filter: brightness(0.45) saturate(0.9) drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  8% {
    opacity: 0.18;
    filter:
      brightness(0.9)
      saturate(1.05)
      drop-shadow(0 0 4px rgba(0, 234, 255, 0.18))
      drop-shadow(0 0 6px rgba(255, 85, 0, 0.12));
  }
  12% {
    opacity: 0.08;
    filter: brightness(0.55) saturate(0.95) drop-shadow(0 0 1px rgba(0, 0, 0, 0));
  }
  20% {
    opacity: 0.34;
    filter:
      brightness(1)
      saturate(1.1)
      drop-shadow(0 0 7px rgba(0, 240, 255, 0.24))
      drop-shadow(0 0 10px rgba(255, 90, 0, 0.16));
  }
  26% {
    opacity: 0.14;
    filter: brightness(0.72) saturate(1) drop-shadow(0 0 2px rgba(0, 0, 0, 0));
  }
  38% {
    opacity: 0.55;
    filter:
      brightness(1.08)
      saturate(1.14)
      drop-shadow(0 0 10px rgba(0, 245, 255, 0.30))
      drop-shadow(0 0 16px rgba(255, 100, 0, 0.20));
  }
  48% {
    opacity: 0.32;
    filter: brightness(0.9) saturate(1.05) drop-shadow(0 0 6px rgba(0, 230, 255, 0.18));
  }
  64% {
    opacity: 0.82;
    filter:
      brightness(1.18)
      saturate(1.2)
      drop-shadow(0 0 12px rgba(0, 245, 255, 0.38))
      drop-shadow(0 0 22px rgba(255, 100, 0, 0.24))
      drop-shadow(0 0 32px rgba(0, 150, 255, 0.12));
  }
  100% {
    opacity: 1;
    filter:
      brightness(1.12)
      saturate(1.14)
      drop-shadow(0 0 10px rgba(0, 240, 255, 0.28))
      drop-shadow(0 0 18px rgba(255, 95, 0, 0.18))
      drop-shadow(0 0 26px rgba(0, 140, 255, 0.10));
  }
}

@keyframes neonIdle {
  0%, 100% {
    filter:
      brightness(1.08)
      saturate(1.1)
      drop-shadow(0 0 8px rgba(0, 234, 255, 0.24))
      drop-shadow(0 0 14px rgba(255, 85, 0, 0.14));
  }
  50% {
    filter:
      brightness(1.16)
      saturate(1.18)
      drop-shadow(0 0 12px rgba(0, 255, 255, 0.34))
      drop-shadow(0 0 22px rgba(255, 95, 0, 0.20))
      drop-shadow(0 0 34px rgba(0, 160, 255, 0.12));
  }
}

@keyframes logoShakeHover {
  0%   { transform: translateX(15px) scale(1.05) rotate(0deg); }
  20%  { transform: translateX(14px) scale(1.05) rotate(-0.4deg); }
  40%  { transform: translateX(16px) scale(1.05) rotate(0.4deg); }
  60%  { transform: translateX(14px) scale(1.05) rotate(-0.4deg); }
  80%  { transform: translateX(16px) scale(1.05) rotate(0.4deg); }
  100% { transform: translateX(15px) scale(1.05) rotate(0deg); }
}

.logo.is-shaking {
  animation: logoShakeHover 0.45s ease-in-out;
}

@media (max-width: 768px) {
  .container {
    padding: 5vh 20px 30px;
  }

  .logo {
    max-width: 380px;
    width: 92%;
    transform: translateX(10px);
  }

  .logo:hover {
    transform: translateX(10px) scale(1.03);
  }

  .logo-wrap::after {
    width: 220px;
    bottom: 92px;
    height: 6px;
  }

  .phone {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .email {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .social {
    margin-top: 18px;
    gap: 14px;
  }

  .social svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 640px) {
  .kp-modal-box {
    padding: 28px 20px 22px;
    border-radius: 18px;
  }

  .kp-modal-box h2 {
    font-size: 24px;
  }

  .kp-modal-box p {
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 4vh 16px 24px;
  }

  .logo {
    max-width: 300px;
    transform: translateX(6px);
  }

  .logo:hover {
    transform: translateX(6px) scale(1.02);
  }

  .logo-wrap::after {
    width: 170px;
    bottom: 72px;
    height: 5px;
  }

  .tagline {
    margin: -18px 0 34px;
    font-size: 11px;
    letter-spacing: 2px;
  }

  .phone {
    font-size: 22px;
  }

  .email {
    font-size: 13px;
  }

  .social {
    margin-top: 16px;
    gap: 12px;
  }

  .social svg {
    width: 28px;
    height: 28px;
  }
}
.kp-calc-box {
  max-width: 680px;
}

.calc-intro {
  margin-bottom: 20px;
}

.kp-form-group {
  margin-bottom: 16px;
}

.kp-form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #c9fbff;
  letter-spacing: 0.3px;
}

.kp-form-group input[type="number"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 238, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #eafcff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kp-form-group input[type="number"]::placeholder {
  color: rgba(230, 248, 255, 0.4);
}

.kp-form-group input[type="number"]:focus {
  border-color: rgba(0, 238, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 200, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.kp-check-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.kp-check-group input[type="checkbox"] {
  transform: scale(1.15);
  accent-color: #00cfff;
}

.kp-calc-btn {
  width: 100%;
  margin-top: 6px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 238, 255, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0, 200, 255, 0.18), rgba(0, 120, 255, 0.14));
  color: #eafcff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow:
    0 0 16px rgba(0, 255, 255, 0.08),
    0 0 30px rgba(0, 140, 255, 0.08);
}

.kp-calc-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 20px rgba(0, 255, 255, 0.14),
    0 0 36px rgba(0, 140, 255, 0.12);
}

.kp-calc-result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 238, 255, 0.12);
  line-height: 1.8;
  color: rgba(230, 248, 255, 0.92);
}

.kp-calc-result strong {
  color: #9ffcff;
}

.kp-calc-note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(230, 248, 255, 0.68);
}

.kp-offer-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: linear-gradient(180deg, rgba(255, 80, 80, 0.22), rgba(255, 40, 40, 0.16));
  border: 1px solid rgba(255, 90, 90, 0.2);
  box-shadow:
    0 0 16px rgba(255, 70, 70, 0.08),
    0 0 30px rgba(255, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kp-offer-link:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(255, 90, 90, 0.14),
    0 0 34px rgba(255, 0, 0, 0.08);
}

@media (max-width: 480px) {
  .kp-form-group input[type="number"] {
    font-size: 15px;
    padding: 12px 14px;
  }

  .kp-calc-btn,
  .kp-offer-link {
    padding: 13px 16px;
    font-size: 15px;
  }
}
.kp-room {
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgba(0, 238, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.kp-room h3 {
  margin: 0 0 14px;
  color: #9ffcff;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.hidden-room {
  display: none;
}

.kp-secondary-btn {
  width: 100%;
  margin-top: 4px;
  margin-bottom: 12px;
  padding: 13px 18px;
  border: 1px dashed rgba(0, 238, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: #c9fbff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.kp-secondary-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.08);
}.calc-highlight {
  position: relative;
}

/* dymek */
.calc-tooltip {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.calc-tooltip span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 1px;
  border-radius: 12px;
  background: rgba(0,200,255,0.15);
  color: #9ffcff;
  border: 1px solid rgba(0,238,255,0.3);
  box-shadow:
    0 0 10px rgba(0,255,255,0.15),
    0 0 20px rgba(0,120,255,0.1);
  position: relative;
  animation: calcTooltipFloat 2.8s ease-in-out infinite;
}

/* strzałka */
.calc-tooltip span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -27px;
  transform: translateX(-50%);
  border-width: 20px 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0,200,255,0.4) transparent;
}

@keyframes calcTooltipFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.calc-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  font-size: 9px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 6px;
  background: #ff3b3b;
  color: #fff;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow:
    0 0 6px #ff0000,
    0 0 12px #ff0000;
}
/* =========================
   COLOR PALETTE
========================= */
.kp-palette-box {
  max-width: 880px;
}

.kp-palette-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 22px;
}

.kp-filter-btn {
  border: 1px solid rgba(0, 238, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #c9fbff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
}

.kp-filter-btn:hover,
.kp-filter-btn.active {
  background: rgba(0, 255, 255, 0.1);
  color: #ffffff;
  box-shadow:
    0 0 12px rgba(0, 255, 255, 0.18),
    0 0 22px rgba(0, 140, 255, 0.12);
}

.kp-palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}

.kp-color-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 238, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.kp-color-card:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(0, 238, 255, 0.28);
  box-shadow:
    0 0 14px rgba(0, 255, 255, 0.12),
    0 0 26px rgba(0, 140, 255, 0.12);
}

.kp-color-preview {
  height: 100px;
  width: 100%;
}

.kp-color-meta {
  padding: 12px 12px 14px;
}

.kp-color-meta strong {
  display: block;
  color: #f4fdff;
  font-size: 14px;
  margin-bottom: 4px;
}

.kp-color-meta span {
  display: block;
  font-size: 12px;
  opacity: 0.78;
  color: #b8d9e8;
}

/* =========================
   FULLSCREEN COLOR VIEW
========================= */
.kp-color-fullscreen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
}

.kp-color-fullscreen.show {
  display: block;
}

.kp-color-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
}

.kp-color-info {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(92vw, 460px);
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(5, 10, 24, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  color: #ffffff;
  box-shadow:
    0 0 16px rgba(0, 0, 0, 0.2),
    0 10px 40px rgba(0, 0, 0, 0.35);
}

.kp-color-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
}

.kp-color-code {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.kp-color-wa {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(90deg, #00b7ff, #00eaff);
  font-weight: 700;
  box-shadow:
    0 0 14px rgba(0, 234, 255, 0.22),
    0 0 30px rgba(0, 140, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kp-color-wa:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 0 18px rgba(0, 234, 255, 0.26),
    0 0 34px rgba(0, 140, 255, 0.22);
}

@media (max-width: 640px) {
  .kp-palette-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kp-color-preview {
    height: 92px;
  }

  .kp-color-info {
    bottom: 12px;
    padding: 14px 14px;
  }

  .kp-color-name {
    font-size: 16px;
  }
}
.fan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.fan {
  position: relative;
  width: 24px;
  height: 28px;
}

.swatch {
  position: absolute;
  bottom: 3px;
  left: 10px;
  width: 15px;
  height: 25px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.38);
  transform-origin: bottom center;
  box-shadow: 0 0 4px rgba(0, 238, 255, 0.12);
}

/* pełniejszy wachlarz */
.sw1  { background: #bcc3c9; transform: rotate(-72deg); }
.sw2  { background: #8fc7b5; transform: rotate(-56deg); }
.sw3  { background: #b4d98f; transform: rotate(-42deg); }
.sw4  { background: #e2d86b; transform: rotate(-28deg); }
.sw5  { background: #f2c14d; transform: rotate(-14deg); }
.sw6  { background: #f0a43c; transform: rotate(0deg); }
.sw7  { background: #eb8238; transform: rotate(14deg); }
.sw8  { background: #df5c39; transform: rotate(28deg); }
.sw9  { background: #c96b5e; transform: rotate(42deg); }
.sw10 { background: #b78a6b; transform: rotate(56deg); }
.sw11 { background: #d86d7a; transform: rotate(68deg); }
.sw12 { background: #c97e8d; transform: rotate(80deg); }
.fan-pin {
  position: absolute;
  bottom: 1px;
  left: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9f7ff;
  box-shadow: 0 0 6px rgba(0,255,255,0.35);
}

.kp-map-box {
  max-width: 900px;
}

.kp-map-wrap {
  margin-top: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,238,255,0.18);
  box-shadow: 0 0 18px rgba(0,255,255,0.08);
}

.kp-map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.fb-showcase {
  margin: 18px auto 0;
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #bfefff;
  border: 1px solid rgba(0, 200, 255, 0.28);
  background: rgba(0, 20, 40, 0.35);
  box-shadow:
    0 0 12px rgba(0, 234, 255, 0.10),
    0 0 28px rgba(0, 136, 255, 0.08);
  text-shadow:
    0 0 8px rgba(0, 234, 255, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.fb-showcase i {
  font-size: 18px;
}

.fb-showcase span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.fb-showcase:hover {
  transform: translateY(-2px) scale(1.02);
  color: #ffffff;
  border-color: rgba(0, 234, 255, 0.48);
  box-shadow:
    0 0 16px rgba(0, 234, 255, 0.18),
    0 0 34px rgba(0, 136, 255, 0.14);
}

@media (max-width: 480px) {
  .fb-showcase {
    padding: 10px 14px;
    gap: 8px;
  }

  .fb-showcase span {
    font-size: 12px;
    letter-spacing: 0.2px;
  }
}
/* neon dla przycisku palety */
.fan-btn {
  position: relative;
}


.fan-btn:hover .fan {
  filter:
    drop-shadow(0 0 8px #00ffff)
    drop-shadow(0 0 18px #00eaff)
    drop-shadow(0 0 30px #0088ff);
}

.fan-btn:hover .swatch {
  box-shadow:
    0 0 8px rgba(0, 255, 255, 0.22),
    0 0 16px rgba(0, 140, 255, 0.16);
}

.fan-btn:hover .fan-pin {
  box-shadow:
    0 0 10px rgba(0,255,255,0.55),
    0 0 18px rgba(0,140,255,0.35);
}
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.wa-icon {
  width: 41px;
  margin-top: 10px;
  height: 41px;
}
/* telefon */
@media (max-width: 768px) {
  .wa-icon {
    width: 24px;
    height: 24px;
  }
}

/* bardzo małe telefony */
@media (max-width: 480px) {
  .wa-icon {
    width: 20px;
    height: 20px;
  }
}
.faq-mini {
  margin-top: 28px;
  text-align: left;
}

.faq-mini h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.faq-item {
  margin-bottom: 14px;
}

.faq-item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.faq-item p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.faq-mini details {
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}

.faq-mini summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
}

.faq-mini details p {
  margin-top: 8px;
  color: rgba(255,255,255,0.8);
}
