/* ------------------------------------- */
/*              ZMIENNE                  */
/* ------------------------------------- */

:root {
  --primary-color: #CBA888;
  --secondary-color: #CBA888;
  --bg-color: #f5f5f7;
  --text-color: #1c1c1e;
  --card-bg: #fff;
  --nav-bg: rgba(255, 255, 255, 0.8);
  --footer-bg: #1c1c1e;
  --footer-text: #aaa;
}

body.dark-mode {
  --bg-color: #1c1c1e;
  --text-color: #f5f5f7;
  --card-bg: #2c2c2e;
  --nav-bg: rgba(28, 28, 30, 0.9);
  --footer-bg: #000;
  --footer-text: #888;
}

/* ------------------------------------- */
/*                 RESET                 */
/* ------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* ------------------------------------- */
/*            NAVIGATION BAR             */
/* ------------------------------------- */

.apple-nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px;          /* ↑ WIĘKSZA WYSOKOŚĆ */
  z-index: 1000;
  transition: all 0.3s ease;
  min-height: 72px; 
}

.apple-nav.scrolled {
  background: var(--nav-bg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}



.nav-left a {
  position: relative;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-color);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 12px;
  transition: background 0.3s ease;
  cursor: pointer;
}

/* ANIMOWANA KRESKA POD MENU */
.nav-left a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-left a:hover::after {
  width: 100%;
}

.mode-toggle:active {
  transform: scale(0.85);
}

/* ------------------------------------- */
/*                HERO                   */
/* ------------------------------------- */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* PARALLAX VIDEO */
.hero video.hero-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.7);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  animation: fadeDown 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  animation: fadeUp 1s ease forwards;
}

/* ------------------------------------- */
/*        ANIMACJE WEJŚCIA (APPLE)      */
/* ------------------------------------- */

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ------------------------------------- */
/*                 KARTY                 */
/* ------------------------------------- */

.cards-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}


.card img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .7s cubic-bezier(.22,1,.36,1), filter .7s ease;
}
.card:hover img{
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.02);
}

.card{
  width: 300px;
  height: 360px; /* KLUCZOWE */
  background: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
}


.card p {
  padding: 15px;
  font-weight: 500;

  display: -webkit-box;
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card{
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
/* ------------------------------------- */
/*                 FOOTER                */
/* ------------------------------------- */

footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}
/* ============================= */
/*        KONTAKT – ŁADNIE        */
/* ============================= */

.contact-section{
  width: 100%;
  padding: 70px 20px 90px;
  background: #f5f5f7;            /* spójne tło jak Apple */
}

.contact-section h2{
  max-width: 980px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #111;
}


.contact-form{
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  padding: 36px 40px 34px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}


.contact-form .form-group{
  max-width: 680px;
  margin: 0 auto 26px;
}


.contact-form label{
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
  font-size: 1rem;
  transition: 
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    transform .15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: #CBA888;
  box-shadow: 0 0 0 5px rgba(203,168,136,0.25);
  transform: translateY(-1px);
}


.contact-form textarea{
  min-height: 140px;
  resize: vertical;
}

/* mobile */
@media (max-width: 768px){
  .contact-section{
    padding: 70px 20px 90px;
    background: #f5f5f7;
  }
  
  .contact-form{ padding: 22px 18px; border-radius: 22px; }
}



@keyframes formFade {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.apple-nav {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
/* --- Naprawiona płynna animacja CTA --- */

.cta-btn {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-size: 200%;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  cursor: pointer;

  /* NOWE, STABILNE TRANSITIONS */
  transition:
    transform 0.25s cubic-bezier(.25,.8,.25,1),
    box-shadow 0.25s ease,
    background-position 0.4s ease;

  will-change: transform, box-shadow, background-position;
}

.cta-btn:hover {
  transform: translateY(-2px); /* delikatne uniesienie zamiast scale() */
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  background-position: 100% 0;
}
/* --- Toast success --- */
#toast-success {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #4caf50;
  color: white;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}

#toast-success.show {
  opacity: 1;
  transform: translateY(0);
}
/* --- Apple-style animated cards --- */
.service-card,
.card{
  position: relative;
  overflow: hidden;

  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.55);

  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s ease;
}

.card:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  background: radial-gradient(
    600px 300px at 20% 0%,
    rgba(203,168,136,0.45),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events:none;
}


.service-card:hover,
.card:hover{
  transform: translateY(-10px);
  box-shadow:
    0 35px 90px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.55),
    inset 0 1px 0 rgba(255,255,255,0.55);
}
.card:hover::before{
  opacity: 1;
}



.card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card:nth-child(1) { transition-delay: .1s; }
.card:nth-child(2) { transition-delay: .2s; }
.card:nth-child(3) { transition-delay: .3s; }
.card:nth-child(4) { transition-delay: .4s; }
/* ----------------------------- */
/*    HAMBURGER + MENU   */
/* ----------------------------- */


.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* --- MOBILE SLIDE-IN MENU (right side) --- */

#menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 900;
}

#menu-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* Hamburger (Apple-like smooth cross) */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, background-color .25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}



  .nav-left.active {
    transform: translateX(0);
  }

  .nav-left.active a:nth-child(1) { transition-delay: 0.05s; }
  .nav-left.active a:nth-child(2) { transition-delay: 0.10s; }
  .nav-left.active a:nth-child(3) { transition-delay: 0.15s; }
  .nav-left.active a:nth-child(4) { transition-delay: 0.20s; }
  .nav-left.active a:nth-child(5) { transition-delay: 0.25s; }


@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
}
@media (max-width: 768px) {

  .nav-left {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 75%;
    max-width: 340px;

    background: rgba(20,20,20,0.55);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);

    box-shadow: -6px 0 25px rgba(0,0,0,0.25);

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 50px 30px;

    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
    z-index: 1000;
  }

  .nav-left.active {
    transform: translateX(0);
  }

  .nav-left a {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff !important;
    opacity: 0;
    transform: translateX(20px);
    transition: transform .5s ease, opacity .5s ease;
  }

  .nav-left.active a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-left.active a:nth-child(1) { transition-delay: .05s; }
  .nav-left.active a:nth-child(2) { transition-delay: .12s; }
  .nav-left.active a:nth-child(3) { transition-delay: .19s; }
  .nav-left.active a:nth-child(4) { transition-delay: .26s; }
  .nav-left.active a:nth-child(5) { transition-delay: .33s; }
}
/* --- Główne ustawienie nav (DLA WSZYSTKICH URZĄDZEŃ) --- */
.apple-nav {
  display: flex;
  justify-content: space-between; /* klucz: rozsuwa left i right */
  align-items: center;
  padding: 10px 25px;
}

/* --- Nav-right zawsze po prawej --- */
.nav-right {
  margin-left: auto !important;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {

  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    z-index: 1100;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* ===== FIX DESKTOP VISIBILITY ===== */
@media (min-width: 769px) {
  .nav-left a {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ===== DESKTOP NAV SIZE FIX ===== */
@media (min-width: 769px) {
  .nav-left {
    gap: 18px;
  }

  .nav-left a {
    font-size: 1rem !important;
    font-weight: 500 !important;
    padding: 6px 12px;
    line-height: 1.2;
  }
}

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }

  /* === HERO VIDEO FIX === */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000; /* fallback */
}

.hero-parallax {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.contact-section{
  padding: 45px 20px 55px;
  background: #f5f5f7;
}

#contact-map{
  max-width: 980px;
  height: 280px;
  margin: 0 auto 26px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

#contact-map{
  max-width: 980px;
  height: 280px;
  margin: 0 auto 50px;   /* <-- ZMIANA (było np. 26px) */
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

/* przycisk rozwijania */
.contact-toggle{
  display: block;
  margin: 20px auto 0;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  font-weight: 750;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-toggle:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}
/* ===== CONTACT PANEL — RIGHT BOTTOM SLIDE ===== */
.contact-panel{
  position: fixed;
  right: 22px;
  bottom: 22px;

  width: min(420px, 92vw);
  max-height: 78vh;
  overflow: auto;

  padding: 22px 20px;
  border-radius: 28px;

  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 26px 80px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);

  /* stan zamknięty */
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.98);
  transition: opacity .22s ease, transform .35s cubic-bezier(.22,1,.36,1);

  z-index: 9999;
}

.contact-panel.open{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* X close */
.contact-close{
  position: absolute;
  top: 12px;
  right: 12px;

  width: 40px;
  height: 40px;
  border-radius: 999px;

  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);

  cursor: pointer;
  display: grid;
  place-items: center;

  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-close:hover{
  transform: scale(1.05);
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}

/* żeby treść formularza nie wchodziła pod X */
.contact-panel form{
  margin-top: 34px;
}



.contact-form .cta-btn{
  display: block;
  margin: 36px auto 0;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(
    90deg,
    #CBA888,
    #E1C4A8
  );
  box-shadow:
    0 14px 32px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.contact-form .cta-btn:hover{
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.22);
}

.contact-panel.open{
  animation: panelReveal .6s cubic-bezier(.22,1,.36,1);
}

@keyframes panelReveal{
  from{
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.contact-panel{
  margin: 24px auto 0;
  max-width: 980px;
  padding: 0 20px;      /* panel nie będzie przyklejony do boków */
}

/* =========================================
   CONTACT — iOS LIQUID GLASS (FULL REDESIGN)
   wklej na sam dół CSS
========================================= */

:root{
  --glass-accent: #CBA888;
  --glass-ink: #111;
  --glass-bg: #f5f5f7;
  --glass-border: rgba(255,255,255,0.55);
  --glass-stroke: rgba(0,0,0,0.08);
  --glass-shadow: 0 30px 90px rgba(0,0,0,0.16);
}

/* Sekcja tła (miękki gradient + “żywe” światło) */
.contact-section{
  position: relative;
  padding: 80px 20px 110px;
  background: radial-gradient(1200px 500px at 15% 10%, rgba(203,168,136,0.20), transparent 60%),
              radial-gradient(900px 450px at 85% 25%, rgba(120,200,255,0.16), transparent 60%),
              linear-gradient(180deg, #f7f7f9, #f2f2f5);
  overflow: hidden;
}

/* animowane “bokeh blobs” za contentem */
.contact-section::before,
.contact-section::after{
  content:"";
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .55;
  z-index: 0;
  animation: floatBlob 10s ease-in-out infinite;
}

.contact-section::before{
  left: -180px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(203,168,136,0.55), transparent 55%);
}

.contact-section::after{
  right: -220px;
  top: 60px;
  background: radial-gradient(circle at 30% 30%, rgba(120,200,255,0.40), transparent 55%);
  animation-delay: -3s;
}

@keyframes floatBlob{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(35px, -25px) scale(1.05); }
}

/* nagłówek (jeśli masz h2) */
.contact-section h2{
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto 26px;
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--glass-ink);
}

/* MAPA jako “glass card” (jeśli masz #contact-map) */
#contact-map{
  position: relative;
  z-index: 1;
  max-width: 980px;
  height: 280px;
  margin: 0 auto 34px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 22px 65px rgba(0,0,0,0.14);
  transform: translateZ(0);
}

#contact-map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter: saturate(1.05) contrast(1.02);
}

/* TOGGLE — glass pill z gradientem + animacja ikonki */
.contact-toggle{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.70);
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.35));
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 0 18px 45px rgba(0,0,0,0.14);
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #141414;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.22,1,.36,1),
              box-shadow .25s ease,
              filter .25s ease;
}

.contact-toggle::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(203,168,136,0.55), rgba(120,200,255,0.35), rgba(203,168,136,0.55));
  filter: blur(10px);
  opacity: 0;
  z-index: -1;
  transition: opacity .25s ease;
}

.contact-toggle:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(0,0,0,0.18);
}

.contact-toggle:hover::after{ opacity: .85; }

.contact-toggle:active{
  transform: translateY(0);
  box-shadow: 0 16px 35px rgba(0,0,0,0.16);
}

/* PANEL — animowane rozwijanie + “wjechanie” */
.contact-panel{
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 18px auto 0;
  padding: 0 20px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height .55s cubic-bezier(.22,1,.36,1),
              opacity .25s ease,
              transform .35s ease;
}

.contact-panel.open{
  max-height: 1600px;
  opacity: 1;
  transform: translateY(0);
}

/* FORM — Liquid Glass card */
.contact-form{
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 34px;
  padding: 44px 52px 46px;

  background: linear-gradient(180deg,
    rgba(255,255,255,0.75),
    rgba(255,255,255,0.40)
  );
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(190%);
  -webkit-backdrop-filter: blur(18px) saturate(190%);
  position: relative;
  overflow: hidden;
}

/* delikatny “shine” po karcie */
.contact-form::before{
  content:"";
  position:absolute;
  inset: -2px;
  background:
    radial-gradient(600px 220px at 25% 0%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(500px 220px at 90% 20%, rgba(203,168,136,0.28), transparent 60%);
  opacity: .8;
  pointer-events:none;
}

/* delikatna siatka */
.contact-form::after{
  content:"";
  position:absolute;
  inset:0;
  background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .35;
  pointer-events:none;
}

/* layout grup */
.contact-form .form-group{
  position: relative;
  max-width: 720px;
  margin: 0 auto 22px;
  z-index: 1;
}

/* label mocniejsze */
.contact-form label{
  display:block;
  margin: 0 0 10px;
  font-size: .92rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: rgba(20,20,20,0.85);
}

/* INPUT — glass field */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.80), rgba(255,255,255,0.55));
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  color: #121212;
  font-size: 1.02rem;
  transition: transform .18s ease,
              box-shadow .25s ease,
              border-color .25s ease,
              background .25s ease;
}

.contact-form textarea{
  min-height: 160px;
  resize: vertical;
}

/* placeholder delikatny */
.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: rgba(0,0,0,0.35);
}

/* Focus: glow + lekki lift */
.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(203,168,136,0.75);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.10),
    0 0 0 6px rgba(203,168,136,0.22);
  background: rgba(255,255,255,0.92);
}

/* CTA — gradient “champagne” + animated glow */
.contact-form .cta-btn{
  position: relative;
  z-index: 1;
  display: block;
  margin: 32px auto 0;
  padding: 16px 46px;
  border-radius: 999px;
  border: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  cursor: pointer;

  background: linear-gradient(90deg, #CBA888, #E6C9AD, #CBA888);
  background-size: 220% 100%;
  box-shadow: 0 18px 44px rgba(0,0,0,0.20);
  transition: transform .25s cubic-bezier(.22,1,.36,1),
              box-shadow .25s ease,
              background-position .45s ease;
}

.contact-form .cta-btn::after{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(203,168,136,0.65), rgba(120,200,255,0.35), rgba(203,168,136,0.65));
  filter: blur(12px);
  opacity: .55;
  z-index:-1;
  transition: opacity .25s ease;
}

.contact-form .cta-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(0,0,0,0.24);
  background-position: 100% 0;
}
.contact-form .cta-btn:hover::after{ opacity: .95; }

.contact-form .cta-btn:active{
  transform: translateY(0);
  box-shadow: 0 18px 44px rgba(0,0,0,0.20);
}

/* Mini animacja wejścia formularza po otwarciu */
.contact-panel.open .contact-form{
  animation: glassPop .6s cubic-bezier(.22,1,.36,1) both;
}
@keyframes glassPop{
  from{ opacity:0; transform: translateY(12px) scale(0.985); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}

/* RWD */
@media (max-width: 768px){
  #contact-map{ height: 220px; border-radius: 20px; }
  .contact-form{ padding: 26px 18px 28px; border-radius: 26px; }
  .contact-form input, .contact-form textarea{ border-radius: 18px; }
}

.contact-toggle-wrap{
  display: flex;
  justify-content: center;
}

/* OFERTA / USŁUGI – tło sekcji */
.offer-section,
.uslugi,
.services {
  background: linear-gradient(
    180deg,
    #f7f7f9 0%,
    #f2f2f5 100%
  );
  padding: 80px 20px 100px;
}

.card h3,
.card p{
  position: relative;
  z-index: 2;
}

.card h3{
  margin: 16px 18px 6px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}

.card p{
  margin: 0 18px 18px;
  color: rgba(0,0,0,0.72);
  font-size: 0.98rem;
  line-height: 1.4;
}




.card:hover{
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.25);
}


.about-hero{
  position: relative;
  padding: clamp(42px, 6vw, 90px) 18px 50px;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(0,0,0,0.06), transparent 60%),
              radial-gradient(900px 420px at 80% 20%, rgba(0,0,0,0.05), transparent 55%);
}

.about-wrap{
  max-width: 1100px;
  margin: 0 auto;
}

.about-head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 30px;
  padding: 26px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 18px 60px rgba(0,0,0,0.10);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.about-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .2px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.about-title{
  margin: 12px 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
}

.about-lead{
  margin: 0 auto;
  max-width: 62ch;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
  opacity: 0.9;
}

.about-stats{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat{
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.stat:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.12);
}

.stat-num{
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .3px;
}

.stat-label{
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.75;
}

.about-subtitle{
  margin: 28px 0 18px;
  text-align: center;
  font-size: 18px;
  opacity: 0.85;
}

/* responsywka */
@media (max-width: 850px){
  .about-stats{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-head{ padding: 22px 16px; }
}
.about-head{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.about-head.fade-visible{
  opacity: 1;
  transform: translateY(0);
}
/* ===== ABOUT HEADER FIX (centrowanie + glass) ===== */
.about-head{
  max-width: 920px;
  margin: 28px auto 22px;
  padding: 26px 22px;
  text-align: center;

  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 22px;

  box-shadow: 0 18px 60px rgba(0,0,0,0.10);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.about-head h2{
  margin: 10px 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  color: #0b0f1a;
}

.about-head p{
  margin: 0 auto;
  max-width: 65ch;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
  color: rgba(11,15,26,0.78);
}

.about-badge{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .2px;
  color: rgba(11,15,26,0.75);

  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.about-subtitle{
  text-align: center;
  margin: 24px 0 18px;
  font-size: 18px;
  color: rgba(11,15,26,0.8);
}

/* Mobile */
@media (max-width: 850px){
  .about-head{ padding: 22px 16px; }
}
/* ===== GLOBAL BROWN GRADIENT HEADINGS ===== */
h1, h2, h3, h4, h5, h6 {
  background: linear-gradient(
    90deg,
    #3b2f2f,   /* ciemny brąz / espresso */
    #7a4a2e,   /* ciepły brąz */
    #c19a6b    /* jasny karmel */
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  font-weight: 800;
  letter-spacing: -0.4px;
}

/* ===== SLIDE-IN CONTACT PANEL ===== */
.contact-panel{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: min(380px, 92vw);
  max-height: 85vh;
  overflow: auto;

  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;

  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .25s ease;
  z-index: 9999;
}

.contact-panel.open{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
/* tło pod modal */
.contact-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 9998;
}

.contact-overlay.show{
  opacity: 1;
  pointer-events: auto;
}
.contact-panel .form-group input,
.contact-panel .form-group textarea{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
  padding: 14px 14px;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.contact-panel .form-group input:focus,
.contact-panel .form-group textarea:focus{
  border-color: rgba(122,74,46,0.45);
  box-shadow: 0 0 0 4px rgba(193,154,107,0.25);
}

/* ===== CONTACT PANEL – PREMIUM GLASS (RIGHT BOTTOM) ===== */
.contact-panel{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: min(460px, 92vw);
  max-height: 82vh;
  overflow: auto;

  padding: 18px;
  border-radius: 28px;

  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 26px 90px rgba(0,0,0,0.28);

  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);

  /* zamknięty */
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(.98);
  transition: opacity .22s ease, transform .35s cubic-bezier(.22,1,.36,1);

  z-index: 9999;
}

.contact-panel.open{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* “karta” wewnątrz – usuwa ten efekt 2 ramek */
.contact-panel .contact-form{
  margin: 0;
  padding: 22px 20px 18px;
  border-radius: 22px;

  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

/* nagłówki label */
.contact-panel label{
  display: block;
  margin: 14px 0 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(20,16,12,0.82);
}

/* inputy */
.contact-panel input,
.contact-panel textarea{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.72);

  padding: 14px 14px;
  font-size: 15px;
  outline: none;

  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.contact-panel textarea{
  min-height: 140px;
  resize: vertical;
}

/* focus – brązowy akcent */
.contact-panel input:focus,
.contact-panel textarea:focus{
  border-color: rgba(122,74,46,0.45);
  box-shadow: 0 0 0 5px rgba(193,154,107,0.22);
}

/* CTA w panelu – brąz premium */
.contact-panel .cta-btn,
.contact-panel button[type="submit"]{
  display: block;
  width: 100%;
  margin-top: 18px;

  padding: 16px 18px;
  border-radius: 999px;
  border: 0;

  font-weight: 800;
  letter-spacing: -0.01em;

  background: linear-gradient(90deg, #7a4a2e, #c19a6b);
  color: #fff;

  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  cursor: pointer;

  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.contact-panel .cta-btn:hover,
.contact-panel button[type="submit"]:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.22);
  filter: brightness(1.02);
}

/* X close – większy, czytelniejszy */
.contact-close{
  position: absolute;
  top: 10px;
  right: 10px;

  width: 42px;
  height: 42px;
  border-radius: 999px;

  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.75);

  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  cursor: pointer;

  display: grid;
  place-items: center;

  font-size: 18px;
  line-height: 1;

  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-close:hover{
  transform: scale(1.06);
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

/* ===== FIX: CLOSE BUTTON ABOVE FORM ===== */
.contact-panel{
  position: fixed; /* już masz, ale ważne dla kontekstu */
}

.contact-panel .contact-form{
  position: relative;
  z-index: 1;
}

/* X zawsze na wierzchu */
.contact-close{
  position: absolute;
  z-index: 5;
  pointer-events: auto;
}

/* === GLOBAL GRADIENT TEXT (NO BACKGROUND CHANGE) === */
:root {
  --text-gradient: linear-gradient(
    90deg,
    #ffffff,
    #f2f2f2,
    #d9d9d9,
    #ffffff
  );
}


/* === ULTRA GRADIENT HERO TEXT === */
.hero-title,
.hero h1 {
  font-weight: 800;
  letter-spacing: 0.08em;

  

  background-size: 300% 300%;
  background-position: 0% 50%;

  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;

  animation: heroGradientFlow 6s ease-in-out infinite;
}

/* smooth animated flow */
@keyframes heroGradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-title {
  text-shadow:
    0 0 18px rgba(0,198,255,0.35),
    0 0 42px rgba(79,172,254,0.25);
}

/* === ANIMATED GRADIENT TEXT === */
.hero p,
.hero .subtitle,
.hero .hero-subtitle,
.hero .hero-description {
  color: transparent !important;

  background-image: linear-gradient(
    90deg,
    #2c0e37,
    #6a0572,
    #ff6a00,
    #ffb347,
    #ff6a00,
    #6a0572
  );

  background-size: 300% 300%;
  background-position: 0% 50%;

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientFlow 8s ease-in-out infinite;
}

/* smooth, luxury flow */
@keyframes gradientFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === FORCE WHITE GRADIENT – MAIN HERO TITLE === */
.hero-title,
.hero h1 {
  color: transparent !important;
  background-image: linear-gradient(
    120deg,
    #ffffff,
    #e0e0e0,
    #bdbdbd,
    #ffffff
  )!important;

  background-size: 300% 300% !important;
  background-position: 0% 50% !important;

  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;

  animation: whiteGradientFlow 10s ease-in-out infinite !important;
}
.hero-title {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

/* === PREMIUM CTA BUTTON (Zarezerwuj teraz) === */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 22px;
  border-radius: 999px;

  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);

  color: #fff;
  box-shadow:
    0 16px 40px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);

  transform: translateZ(0);
  transition:
    transform .25s cubic-bezier(.22,1,.36,1),
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease,
    filter .25s ease;
}



.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.cta-btn:hover::before {
  animation: ctaShine .9s ease forwards;
}

@keyframes ctaShine {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* click */
.cta-btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

/* focus (keyboard) */
.cta-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.16),
    0 18px 50px rgba(0,0,0,0.32);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn-reserve,
  .cta-btn,
  .hero .btn,
  .hero a.btn,
  .hero a.button,
  .hero button,
  a[href*="Rezerwacja"],
  a[href*="rezerwacja"] {
    transition: none;
  }
  .btn-reserve::before,
  .cta-btn::before,
  .hero .btn::before,
  .hero a.btn::before,
  .hero a.button::before,
  .hero button::before,
  a[href*="Rezerwacja"]::before,
  a[href*="rezerwacja"]::before {
    animation: none;
  }
}

/* === HERO SUBTITLE – BETTER TYPOGRAPHY === */
.hero p,
.hero .subtitle,
.hero .hero-subtitle,
.hero .hero-description {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.01em;

  max-width: 720px;
  margin: 18px auto 28px;

  text-align: center;

  /* poprawa czytelności na zdjęciu */
  text-shadow:
    0 2px 8px rgba(0,0,0,0.45);
}
/* === CONTACT FORM SUBMIT – SUNSET GRADIENT === */
.contact-panel button[type="submit"],
.contact-panel input[type="submit"],
.contact-form button[type="submit"],
.contact-form input[type="submit"] {
  position: relative;

  padding: 14px 22px;
  border-radius: 999px;
  border: none;

  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;

  color: #fff;

  background-image: linear-gradient(
    90deg,
    #2c0e37,
    #6a0572,
    #ff6a00,
    #ffb347
  );

  box-shadow:
    0 14px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition:
    transform .25s cubic-bezier(.22,1,.36,1),
    box-shadow .25s ease,
    filter .25s ease;
}
.contact-panel button[type="submit"]:hover,
.contact-panel input[type="submit"]:hover,
.contact-form button[type="submit"]:hover,
.contact-form input[type="submit"]:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);

  box-shadow:
    0 22px 60px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.contact-panel button[type="submit"]:active,
.contact-panel input[type="submit"]:active,
.contact-form button[type="submit"]:active,
.contact-form input[type="submit"]:active {
  transform: translateY(0) scale(0.97);
}
.contact-panel button[type="submit"]:focus-visible,
.contact-panel input[type="submit"]:focus-visible,
.contact-form button[type="submit"]:focus-visible,
.contact-form input[type="submit"]:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(255,180,120,0.35),
    0 18px 50px rgba(0,0,0,0.4);
}
/* === CONTACT CTA – MOVE UP FOR VISIBILITY === */
.contact-cta,
.contact-toggle,
.contact-button,
button.contact-open {
  position: fixed;
  bottom: 96px;   /* KLUCZOWE – było za nisko */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}
@media (max-width: 768px) {
  .contact-cta,
  .contact-toggle,
  .contact-button,
  button.contact-open {
    bottom: 120px;
  }
}
/* === FIX: NO "SLIDE" ON HOVER (keep centered) === */
.contact-cta:hover,
.contact-toggle:hover,
.contact-button:hover,
button.contact-open:hover {
  transform: translateX(-50%) !important; /* nie zmieniaj pozycji */
  /* zamiast przesuwania: tylko "premium" efekt */
  filter: brightness(1.05);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

/* === LIQUID GLASS – CONTACT CTA (WHITE / PREMIUM) === */
.contact-cta,
.contact-toggle,
.contact-button,
button.contact-open {
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);

  border: 1px solid rgba(255,255,255,0.45);

  color: rgba(0,0,0,0.85);

  box-shadow:
    0 20px 55px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.65);

  transition:
    box-shadow .25s ease,
    background .25s ease,
    filter .25s ease;
}
/* === LIQUID GLASS – CONTACT CTA (BRIGHTER WHITE) === */
.contact-cta,
.contact-toggle,
.contact-button,
button.contact-open {
  background: rgba(255,255,255,0.42);
  backdrop-filter: blur(26px) saturate(190%);
  -webkit-backdrop-filter: blur(26px) saturate(190%);

  border: 1px solid rgba(255,255,255,0.55);

  color: rgba(0,0,0,0.88);

  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.8);

  transition:
    box-shadow .25s ease,
    background .25s ease,
    filter .25s ease;
}


/* === ABOUT: "Nasz zespół" – bez gradientu, inny kolor === */
.about-subtitle{
  background-image: none !important;
  -webkit-text-fill-color: initial !important;
  color: #2f3e46 !important; /* slate (nie czarny, nie brąz, nie sunset) */
}
/* ===== SEKCJA KONTAKT ===== */

.fade-in {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8f9fb, #ffffff);
  display: flex;
  justify-content: center;
}

.contact-info {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 500px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* ===== TEKST ===== */

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #000000; /* czarny */
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* Telefon: i E-mail: */
.contact-info p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #222222; /* ciemny szary */
}

/* Numer telefonu i email */
.contact-info a {
  color: #ff9a3c; /* lekki pomarańcz */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #ff7a18; /* mocniejszy pomarańcz */
}

/* ===== MAPA ===== */

iframe {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ===== FOOTER ===== */

footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
/* WYŁĄCZENIE GRADIENTU DLA KONTAKTU */
.contact-info h2 {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #000 !important;
  color: #000 !important;
}
/* WYŁĄCZENIE GRADIENTU TEKSTU W KONTAKCIE */
.contact-info p,
.contact-info strong,
.contact-info span {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: #222 !important;
}
/* Wyśrodkowanie kart w sekcji O nas */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.fade-in {
  flex-direction: column;
  align-items: center;
}
.oferta-video {
  object-position: 50% 0%; /* sama góra */
}
.hero .oferta-video {
  object-position: 50% 60% !important;
}
.calendar {
  width: 100%;
  height: 400px;
  max-width: 1000px;
  margin: 0 auto;
}
.calendar-container {
  width: 100%;
  max-width: 1400px; /* możesz zwiększyć */
  margin: 0 auto;
}

.calendar-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}