/* =========================================================
   MAPA – kontener + warstwy interaktywne
   ========================================================= */

/* Główny kontener mapy (pozycjonowanie dla warstw nad obrazem) */
#map-container {
  position: relative;
  max-width: 100%;
}

/* Obraz mapy – responsywny */
#map-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Canvas z zaznaczeniami nad mapą */
#map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; /* nie blokuje kliknięć */
}

/* Tooltip nad mapą */
#map-tooltip {
  position: absolute;
  z-index: 10;
  background: rgba(0,0,0,.75);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
  pointer-events: none;
}

/* Ukrycie technicznych pól */
ul.fields-container {
  display: none !important;
}


/* =========================================================
   RESPONSIVE TYPOGRAFIA (mobile)
   ========================================================= */

@media (max-width: 768px) {
  h1 {
    font-size: 30px;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 25px;
    line-height: 1.3;
  }
}


/* =========================================================
   HERO – NOWOCZESNY I LEKKI
========================================================= */

/* Delikatne przyciemnienie zamiast mocnego blur */
#hero-rowcolumn1 {
    position: relative;
}

#hero-rowcolumn1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,25,50,0.55) 0%,
        rgba(10,25,50,0.45) 40%,
        rgba(10,25,50,0.65) 100%
    );
    z-index: 1;
}

/* Upewniamy się, że treść jest nad overlay */
#hero-rowcolumn1 > * {
    position: relative;
    z-index: 2;
}


/* Mały tekst */
.hero-small {
    font-size: 14px;
    opacity: 0.75;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #ffffff;
}

/* Główny tytuł */
.hero-title h1 {
    font-size: 48px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 10px 35px rgba(0,0,0,0.35);
}


/* =========================================================
   PRZYCISK – ELEGANCKI, MNIEJ SZKŁA
========================================================= */

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none !important;
    color: #ffffff !important;

    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 40px;

    transition: all 0.3s ease;
}

/* Hover */
.hero-btn:hover {
    background: rgba(255,255,255,0.30);
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE – POPRAWIONE PROPORCJE
========================================================= */


@media (max-width: 768px) {

    /* zmniejszamy wysokość całej sekcji */
    #hero-rowcolumn1 {
        padding-top: 30px !important;
        padding-bottom: 40px !important;
        min-height: 60vh !important;
        display: flex;
        align-items: center;
    }

    /* mniejszy tytuł */
    .hero-title h1 {
        font-size: 30px !important;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    /* mniejszy odstęp między tekstem a przyciskiem */
    .hero-btn {
        margin-top: 14px;
    }

    /* mały tekst nad tytułem */
    .hero-small {
        margin-bottom: 6px;
    }

}


/* =========================================================
   SEKCJA FILMOWA (3 boxy)
   ========================================================= */

.filmowa-section {
    padding: 50px 8%;
}

/* Grid 3 kolumn */
.filmowa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}


/* =========================================================
   BOX ZDJĘCIOWY (3B / 3C)
   ========================================================= */

.filmowa-box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.filmowa-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Cień dla boxów */
.filmowa-box,
.filmowa-info-box {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Animacja wejścia */
.filmowa-box,
.filmowa-info-box {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* Po dodaniu klasy .show */
.filmowa-section.show .filmowa-box,
.filmowa-section.show .filmowa-info-box {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient od dołu zdjęcia */
.filmowa-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px 40px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.25),
        rgba(0,0,0,0)
    );

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

/* Nazwa budynku na zdjęciu */
.filmowa-overlay h3 {
    font-size: 26px;
    letter-spacing: 3px;
    font-weight: 500;
    color: #ffffff;

    padding: 10px 20px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    border-radius: 40px;
}

/* Hover zdjęcia */
.filmowa-box:hover img {
    transform: scale(1.04);
}


/* =========================================================
   INFO BOX (ciemny panel)
   ========================================================= */

.filmowa-info-box {
    background: linear-gradient(160deg, #14263D, #1c3554);
    border-radius: 22px;
    padding: 70px 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.info-content {
    width: 100%;
    max-width: 380px;
    margin: auto;
}

/* ===== PLANOWANA INWESTYCJA ===== */

.info-label{
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#d8b24c;
    font-weight:600;
    margin-bottom:14px;
    display:block;
}

/* ===== TYTUŁ ===== */

.filmowa-info-box h3{
    font-size:42px;
    margin:8px 0 18px;
    font-weight:500;
    color:#ffffff !important;
}

/* linia premium */

.filmowa-info-box h3::after{
    content:"";
    display:block;
    width:60px;
    height:2px;
    background:#d8b24c;
    margin:14px auto 8px;
    opacity:0.8;
}

/* ===== BUDOWNICTWO MIESZKANIOWE ===== */

.info-subtitle{
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#ffffff;
    font-weight:600;
    margin-top:6px;
    margin-bottom:22px;
}

/* ===== LISTA ===== */

.info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 35px;
}

.info-list li {
    margin-bottom: 12px;
    font-size: 15px;
    opacity: 0.9;
    color: #ffffff;
}

.info-list li strong{
    font-size:18px;
    color:#d8b24c;
}

/* ===== TELEFON ===== */

.filmowa-info-box a{
    color:#d8b24c;
    font-weight:500;
}

/* ===== PRZYCISK ===== */

.filmowa-info-box .hero-btn{
    margin-top:18px;
}
/* =========================================================
   RESPONSIVE DLA SEKCJI FILMOWA
   ========================================================= */

@media (max-width: 1024px) {
    .filmowa-grid {
        grid-template-columns: 1fr;
    }

    .filmowa-box img {
        height: 420px;
    }

    .filmowa-section {
        padding: 80px 6%;
    }
}


/* =========================================================
   INTRO (nagłówek nad sekcją)
   ========================================================= */

.filmowa-intro {
    padding: 90px 8% 60px;
    text-align: center;
}

.filmowa-intro small {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a96a8;
    margin-bottom: 15px;
}

.filmowa-intro h1 {
    font-size: 34px;
    font-weight: 400;
    color: #14263D;
    margin: 0;
    position: relative;
    display: inline-block;
}

.filmowa-intro h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #14263D;
    margin: 18px auto 0;
    opacity: 0.4;
}

.filmowa-intro h2 {
    border: none !important;
}

.filmowa-intro h2::before,
.filmowa-intro h2::after {
    content: none !important;
}


/* =========================================================
   MENU LEWE – Filmowa 3B
   ========================================================= */

.position-left .tck-module {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    max-width: 480px;
}

.position-left .tck-module-title {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #14263D;
}

.position-left .tck-title-split {
    font-weight: 500;
}

.position-left .mod-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.position-left .mod-menu li {
    margin-bottom: 12px;
}

.position-left .mod-menu a {
    display: block;
    padding: 12px 18px;
    border-radius: 10px;
    background: #f4f6f9;
    color: #14263D;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.position-left .mod-menu a:hover {
    background: #14263D;
    color: #ffffff;
    transform: translateX(6px);
}

.position-left .mod-menu .current > a,
.position-left .mod-menu .active > a {
    background: #14263D;
    color: #ffffff;
}


/* =========================================================
   MENU PRAWE – Filmowa 3C
   ========================================================= */

/* ===== PRAWE MENU – ULTRA COMPACT ===== */

.right.tck-module {
    background: #ffffff;
    padding: 20px 22px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(20,38,61,0.05);
    border: 1px solid rgba(20,38,61,0.05);
    max-width: 360px;
}

/* ===== TYTUŁ (MNIEJSZY) ===== */

.right .tck-module-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #14263D;
    position: relative;
}

/* krótka cienka linia */
.right .tck-module-title::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    background: #3d6fb4;
    margin-top: 6px;
    opacity: 0.6;
}

/* ===== MENU RESET ===== */

.right .mod-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right .mod-menu li {
    margin-bottom: 6px;
}

/* ===== LINKI – CIAŚNIEJ ===== */

.right .mod-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    color: #14263D;
    background: #f7f9fc;
    transition: all 0.2s ease;
}

/* mała subtelna strzałka */
.right .mod-menu a::after {
    content: "›";
    font-size: 14px;
    opacity: 0.4;
}

/* hover */
.right .mod-menu a:hover {
    background: #eef2f7;
    transform: translateX(4px);
}

/* aktywne */
.right .mod-menu .current > a,
.right .mod-menu .active > a {
    background: #14263D;
    color: #ffffff;
}

/* ======================================================
   GLOBALNY WRAPPER SEKCJI
====================================================== */

/* ===== SEKCJA O NAS ===== */

.about-section {
    padding: 70px 8% 120px;
    background: linear-gradient(to bottom, #ffffff 0%, #f7f9fc 100%);
}

/* ===== NAGŁÓWEK ===== */

.about-section h2 {
    font-size: 36px;
    font-weight: 400;
    color: #14263D;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* Krótka elegancka linia */
.about-section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background: #14263D;
    margin-top: 16px;
    opacity: 0.4;
}

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

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    max-width: 900px;
}

/* ===== USUNIĘCIE GLOBALNEJ SZAREJ LINII ===== */
.about-section h2 {
    border-bottom: none !important;
}

/* jeśli linia jest robiona pseudo-elementem */
.about-section h2::before {
    content: none !important;
}

/* ===== KRÓTKA ELEGANCKA LINIA ===== */
.about-section h2::after {
    content: "";
    display: block;
    width: 60px;          /* długość kreski */
    height: 2px;
    background: #3d6fb4;  /* Twój niebieski */
    margin-top: 12px;
}
.job-offer h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 20px;
    color: #14263D;
}

.job-offer ul {
    margin: 0 0 30px;
    padding-left: 20px;
}

.job-offer li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #4a5568;
}

.job-cta {
    margin-top: 40px;
    padding: 25px 30px;
    background: #f4f6f9;
    border-radius: 12px;
}

.job-cta a {
    color: #14263D;
    font-weight: 500;
}

/* ===== SEKCJA KONTAKT ===== */

.modern-contact {
    padding: 70px 8% 80px;
    background: #ffffff;
}

.contact-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 80px;
}

/* LEWA STRONA */

.contact-company h2 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #14263D;
}

.company-name {
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-company p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-company a {
    color: #14263D;
    font-weight: 500;
    text-decoration: none;
}

/* PRAWA STRONA – TELEFONY */
/* ===== GRANATOWY BOX KONTAKT ===== */

.contact-phones {
    background: linear-gradient(160deg, #14263D, #1c3554);
    padding: 55px 45px;
    border-radius: 24px;
    color: #ffffff;
    box-shadow: 0 35px 80px rgba(20,38,61,0.18);
    position: relative;
    overflow: hidden;
}

/* subtelne wewnętrzne światło */
.contact-phones::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== LABEL ===== */

.phones-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.6;
    display: block;
    margin-bottom: 28px;
}

/* ===== GŁÓWNY NUMER ===== */

.phone-main {
    display: block;
    font-size: 32px;
    font-weight: 500;
    color: #ffffff !important;
    text-decoration: none;
    margin-bottom: 28px;
    transition: all 0.25s ease;
}

/* ===== DODATKOWE NUMERY ===== */

.phone-alt {
    display: block;
    font-size: 17px;
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    margin-bottom: 14px;
    transition: all 0.25s ease;
}

/* ===== HOVER – ELEGANCKI ===== */

.contact-phones a:hover {
    color: #ffffff !important;
    transform: translateX(6px);
    background: rgba(255,255,255,0.06);
    padding-left: 10px;
    border-radius: 8px;
}

/* MAPA */

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .contact-top {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .phone-main {
        font-size: 26px;
    }
}

/* ===== TOPBAR WRAPPER ===== */
/* ===== LOGO ===== */

.tck-logo-img {
    transition: transform 0.3s ease;
}

.tck-logo a:hover .tck-logo-img {
    transform: scale(1.04);
}

/* ===== PREMIUM OBRAZY W TREŚCI ===== */

.content-image {
    max-width: 1100px;
    margin: 30px auto;
    padding: 18px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow:
        0 30px 80px rgba(20,38,61,0.08),
        0 10px 30px rgba(20,38,61,0.06);
    transition: all 0.4s ease;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* delikatne uniesienie przy hover */
.content-image:hover {
    transform: translateY(-6px);
    box-shadow:
        0 40px 100px rgba(20,38,61,0.12),
        0 15px 40px rgba(20,38,61,0.08);
}
/* =====================================
   HERO START – overlay dla row9
===================================== */
#row9 {
  position: relative;
  overflow: hidden;
}

#row9::before {
  content: "";
  position: absolute;
  inset: 0;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  background: linear-gradient(
    to bottom,
    rgba(10,25,50,0.50) 0%,
    rgba(10,25,50,0.35) 40%,
    rgba(10,25,50,0.60) 100%
  );

  z-index: 1;
  pointer-events: none;

  will-change: backdrop-filter; /* stabilniejsze renderowanie */
}

#row9 .inner {
  position: relative;
  z-index: 2;
}

/* =====================================
   MOBILE – center vertical
===================================== */

@media (max-width: 768px) {

  #row9 .inner {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

}

/* =====================================
   HERO – overlay dla row4 i row8
===================================== */

#row4 {
  position: relative;
  overflow: hidden;
}

#row4::before {
  content: "";
  position: absolute;
  inset: 0;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  background: linear-gradient(
    to bottom,
    rgba(10,25,50,0.50) 0%,
    rgba(10,25,50,0.35) 40%,
    rgba(10,25,50,0.60) 100%
  );

  z-index: 1;
  pointer-events: none;
}

#row4 .inner {
  position: relative;
  z-index: 2;
}

/* =====================================
   HERO – ROW8 elegancki blur
===================================== */

#row8 {
  position: relative;
  overflow: hidden;
}

/* rozmycie */
#row8::before {
  content: "";
  position: absolute;
  inset: 0;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  z-index: 1;
  pointer-events: none;
}

/* subtelne przyciemnienie */
#row8::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(10,25,50,0.35) 0%,
    rgba(10,25,50,0.25) 40%,
    rgba(10,25,50,0.50) 100%
  );

  z-index: 2;
  pointer-events: none;
}

/* treść nad wszystkim */
#row8 .inner {
  position: relative;
  z-index: 3;
}
/* ===== OPIS INWESTYCJI – PREMIUM ===== */

.filmowe-description-premium {
  padding: 90px 6%;
  background: #ffffff;
}

/* HEADER */

.filmowe-header {
  text-align: center;
  margin-bottom: 70px;
}

.filmowe-header h1 {
  font-size: 44px;
  font-weight: 500;
  color: #14263D;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.filmowe-header h3 {
  font-size: 18px;
  font-weight: 400;
  color: #4a5568;
  margin-bottom: 40px;
}

.filmowe-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.filmowe-meta div {
  font-size: 14px;
  color: #14263D;
}

.filmowe-meta span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c8a24a;
  margin-bottom: 5px;
}

/* PODTYTUŁY */

.filmowe-title {
  margin-top: 45px;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 500;
  color: #14263D;
  position: relative;
}

.filmowe-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #c8a24a;
  margin-top: 8px;
}

/* GRID */

.filmowe-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.filmowe-text .lead {
  font-size: 20px;
  color: #14263D;
  margin-bottom: 25px;
}

.filmowe-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #4a5568;
  margin-bottom: 18px;
}

/* ZDJĘCIA */

.filmowe-images-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filmowe-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  aspect-ratio: 16 / 9;
}

.filmowe-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.filmowe-image:hover img {
  transform: scale(1.05);
}

/* CENNIK */

.filmowe-pricing {
  background: #14263D;
  color: #ffffff;
  padding: 45px;
  border-radius: 24px;
  display: grid;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.filmowe-pricing strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  color: #c8a24a;
}

/* MOBILE */

@media (max-width: 900px) {

  .filmowe-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .filmowe-images-column {
    order: -1;
  }

  .filmowe-header h1 {
    font-size: 32px;
  }

}

/* CENA */

.filmowe-pricing {
  background: #14263D;
  color: #ffffff;
  padding: 45px;
  border-radius: 24px;
  display: grid;
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.filmowe-pricing strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  color: #c8a24a;
}

/* MOBILE */

@media (max-width: 900px) {

  .filmowe-grid {
    grid-template-columns: 1fr;
  }

  .filmowe-image-placeholder {
    min-height: 280px;
  }

  .filmowe-meta {
    gap: 20px;
  }

}
/* ===============================
   Szybki kontakt
=============================== */

.top-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  font-size: 13px;
}

.top-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #2b3a55;
  position: relative;
  transition: all 0.3s ease;
}

/* cienka animowana linia pod spodem */
.top-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #c8a24a;
  transition: width 0.3s ease;
}

.top-contact a:hover {
  color: #c8a24a;
}

.top-contact a:hover::after {
  width: 100%;
}

.top-contact .icon {
  font-size: 13px;
}

@media (max-width: 768px) {

  .top-contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    text-align: center;
  }

  .top-contact a {
    font-size: 12px;
  }

  .top-contact .text {
    white-space: nowrap;   /* żeby nie łamało numeru */
  }

}

/* =========================================================
   MENU LEWE – Filmowa
   ========================================================= */

.position-left .tck-module {
    background: #ffffff;
    padding: 18px 22px;              /* było 25/30 */
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    max-width: 460px;                /* lekko węższe */
}

.position-left .tck-module-title {
    font-size: 22px;                 /* było 26px */
    font-weight: 400;
    margin-bottom: 14px;
    color: #14263D;
}

.position-left .tck-title-split {
    font-weight: 500;
}

.position-left .mod-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.position-left .mod-menu li {
    margin-bottom: 8px;              /* było 12px */
}

.position-left .mod-menu a {
    display: block;
    padding: 8px 14px;               /* było 12/18 */
    border-radius: 8px;              /* delikatniej */
    background: #f4f6f9;
    color: #14263D;
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 400;
    font-size: 14px;                 /* lekko mniejsze */
}

.position-left .mod-menu a:hover {
    background: #14263D;
    color: #ffffff;
    transform: translateX(4px);      /* subtelniej */
}

.position-left .mod-menu .current > a,
.position-left .mod-menu .active > a {
    background: #14263D;
    color: #ffffff;
}

/* =========================================================
   Wyróżnienie Filmowa 3B i 3C
   ========================================================= */

.position-left .item-839 > a,
.position-left .item-838 > a {
    position: relative;
    padding-left: 18px;
}

.position-left .item-839 > a::before,
.position-left .item-838 > a::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;                      /* cieńsza */
    height: 55%;
    background: #c8a24a;
    border-radius: 2px;
}
/* =========================================================
   WYRÓŻNIENIE Filmowa 3B i 3C
   ========================================================= */

#mod-menu246 > li.item-839 > a,
#mod-menu246 > li.item-838 > a {
  position: relative;
}

#mod-menu246 > li.item-839 > a::before,
#mod-menu246 > li.item-838 > a::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 55%;
  background: #c8a24a;
  border-radius: 2px;
}


/* Statystyki optal - jasne */

.stats-modern {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 80px 0;
  text-align: center;
}

.stat .number {
  font-size: 56px;
  font-weight: 700;
  color: #c8a24a;
}

.stat .line {
  width: 40px;
  height: 2px;
  background: #e2e6ec;
  margin: 20px auto;
}

.stat .desc {
  font-size: 14px;
  color: #2b3a55;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 768px) {

  .stats-modern {
    flex-direction: column;
    gap: 50px;
    padding: 60px 20px;
  }

  .stat .number {
    font-size: 44px;
  }

  .stat .line {
    margin: 16px auto;
  }

  .stat .desc {
    font-size: 13px;
    letter-spacing: 0.5px;
  }

}

/* cienka linia topbar stiky */

#wrapper7 {
  transition: all 0.3s ease;
}

#wrapper7.istopfixed {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* =========================================================
   STATYSTYKI – styl alternatywny (karty)
   ========================================================= */

.stats-alt {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 70px 20px;
}

.stat-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  padding: 40px 45px;
  border-radius: 18px;
  text-align: center;
  min-width: 220px;
  color: #ffffff !important;

  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 25px 60px rgba(0,0,0,0.10);

  transition: all .3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

.stat-card .number {
  font-size: 52px;
  font-weight: 700;
  color: #c8a24a;
  line-height: 1;
  margin-bottom: 14px;
}

.stat-card .desc {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
}

@media (max-width: 768px) {

  .stats-alt {
    flex-direction: column;
    gap: 16px;
    padding: 30px 15px;
  }

  .stat-card {
    padding: 20px 22px;   /* było 30 */
    min-width: unset;
  }

  .stat-card .number {
    font-size: 32px;      /* było 42 */
  }

  .stat-card .desc {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

}

/* ============================================
   STATYSTYKI – HERO FILMOWE (mniejsze cards)
============================================ */

.filmowe-hero-stats .stat-card {

  background: rgba(15, 30, 50, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 35px 80px rgba(0,0,0,0.40);

  padding: 32px 36px;          /* było 45 / 50 */
  border-radius: 20px;
}

/* liczby */
.filmowe-hero-stats .number {
  color: #d8b24c;
  font-size: 44px;             /* było 56 */
  text-shadow: 0 6px 24px rgba(0,0,0,0.5);
}

/* opisy */
.filmowe-hero-stats .desc {
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
  font-size: 13px;
}

/* hover */
.filmowe-hero-stats .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 100px rgba(0,0,0,0.50);
}

/* środkowa karta */
.filmowe-hero-stats .stat-card:nth-child(2) {
  transform: scale(1.05);      /* było 1.08 */
  background: rgba(15,30,50,0.85);
  box-shadow: 0 50px 110px rgba(0,0,0,0.55);
}


/* ============================================
   MOBILE HERO FILMOWE (mniejsze cards)
============================================ */

@media (max-width:768px){

  .filmowe-hero-stats {
    gap:16px;
    padding:30px 15px;
  }

  .filmowe-hero-stats .stat-card{
    padding:20px 22px;
    min-width:unset;
  }

  .filmowe-hero-stats .number{
    font-size:32px;
  }

  .filmowe-hero-stats .desc{
    font-size:12px;
    letter-spacing:0.5px;
  }

  .filmowe-hero-stats .stat-card:nth-child(2){
    transform:none;   /* usuwa powiększenie na mobile */
  }

}

/* mapa */
.map {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* desktop – wyższa mapa */
@media (min-width: 1024px) {
    .map {
        aspect-ratio: 16 / 6;
    }
}

/* =====================================
   STOPKA – kolumny
===================================== */
.footer-contact h3{
  font-size:18px;
  color:#ffffff;
  margin-bottom:15px;
}

.footer-contact p{
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,0.75);
  margin-bottom:12px;
}

.footer-contact a{
  color:#c8a24a;
  text-decoration:none;
}

.footer-contact a:hover{
  text-decoration:underline;
}

.footer-columns{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:60px;
  max-width:1200px;
  margin:0 auto;
}

/* kolumna */

.footer-col h3{
  font-size:18px;
  font-weight:500;
  color:#ffffff;
  margin-bottom:18px;
}

.footer-col p{
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,0.75);
  margin-bottom:12px;
}

/* lista linków */

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li{
  margin-bottom:8px;
}

.footer-col a{
  text-decoration:none;
  color:rgba(255,255,255,0.75);
  font-size:14px;
  transition:all .25s ease;
}

.footer-col a:hover{
  color:#c8a24a;
}

/* linia oddzielająca */

.footer-col ul li{
  position:relative;
  padding-left:14px;
}

.footer-col ul li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:4px;
  height:4px;
  background:#c8a24a;
  border-radius:50%;
}

/* =====================================
   MOBILE
===================================== */

@media (max-width:768px){

.footer-columns{
  grid-template-columns:1fr;
  gap:35px;
  text-align:center;
}

.footer-col ul li{
  padding-left:0;
}

.footer-col ul li::before{
  display:none;
}

}

