  /* ===== Mobile First Base ===== */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      color: #222;
      background: #ffffff; /* base background for clear section contrast */
    }

    a { text-decoration: none; color: inherit; }

    header {
      background: rgba(17, 17, 17, 0.8); /* transparent on hero */
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      color: #fff;
      padding: 26px;
      position: sticky;
      top: 0;
      z-index: 100;
      transition: background 0.3s ease;
    }

 
    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .nav .logo img {
      height: 60px;
      width: auto;
      display: block;
      margin-left: 70px;
    }

    .nav ul {
      list-style: none;
      display: flex;
      gap: 12px;
      font-size: 14px;
      margin-left: auto; /* push menu to the right, next to socials */
      transform: translateX(-10px);
    }

    .nav ul a {
      display: inline-block;
      padding: 10px 16px;
      border: 1px solid rgba(255,255,255,0.6);
      border-radius: 4px;
      font-weight: bold;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background 0.25s ease, color 0.25s ease;
    }

    .nav ul a:hover {
      background: #fff;
      color: #111;
    }

  .social {
  display: flex;
  gap: 14px;
  margin-left: 24px;
}

.social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.social a:hover {
  background: #fff;
}

.social a:hover .icon {
  fill: #111;
}

.icon {
  width: 16px;
  height: 16px;
  fill: #fff;
  transition: fill 0.25s ease;
}

    section {
      padding: 70px 16px; /* stronger vertical rhythm between sections */
      text-align: center;
      scroll-margin-top: 110px; /* offset for sticky header */
    }

    section h2 {
      font-size: 28px;
      margin-bottom: 16px;
    }

    /* reduce spacing for all sections except About */
    section:not(.about) h2 {
      margin-top: -40px;
    }

    .why-us {
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 15px;
      color: #555;
    }


    .hero {
      text-align: center;
      padding: 170px 16px;
    }

    /* shared image behind header + hero */
    /* body::before REMOVED – it caused all sections to share the same background */

    .hero h2 {
      font-size: 28px;
      margin-bottom: 16px;
    }

    .hero p {
  max-width: 700px;
  margin: 0 auto 20px;
}

    .trust-bar {
      margin: 20px auto 24px;
      font-size: 14px;
      font-weight: bold;
      opacity: 0.9;
      text-align: center;
    }

  .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;

  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(20,20,20,0.85),
    rgba(0,0,0,0.95)
  );

  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;

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

  box-shadow:
    0 8px 30px rgba(0,0,0,0.45),
    inset 0 0 0 rgba(255,255,255,0);

  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);

  background: linear-gradient(
    135deg,
    rgba(30,30,30,0.95),
    rgba(0,0,0,1)
  );

  border-color: rgba(255,255,255,0.45);

  box-shadow:
    0 12px 40px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.15);
}


    .about {
      text-align: left;
      background: #ffffff; /* light section */
    }

    .about-title {
      text-align: center;
      margin-top: 0; /* keep title at top of section */
      margin-bottom: 40px;
    }

    .about .about-inner {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }

    .about .about-box {
      border: 1px solid rgba(0,0,0,0.14);
      padding: 32px;
      border-radius: 14px;
      background: linear-gradient(180deg, #ffffff, #f5f5f5);
      box-shadow: 0 20px 42px rgba(0,0,0,0.08);
      width: 100%; /* mobile: full width */
    }

    .about .about-text {
      flex: 1;
    }

    .about .about-text p {
      max-width: none;
      margin: 0;
    }

    .about .about-image {
  flex: 1;
  max-width: 378px;     /* <<< TO JEST KLUCZ */
  height: 468px;        /* <<< kontrola wysokości */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;     /* <<< ważne */
}

.about .about-image img {
  border-radius: 4px;
}

.about .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* luxury crop */
  display: block;
}

/* MOBILE */
.about .about-inner {
  display: flex;
  flex-direction: column;
  align-items: center; /* <<< TO JEST KLUCZ */
}

    @media (min-width: 768px) {
      .about .about-inner {
        flex-direction: row;
        align-items: center;
        gap: 40px;
      }

      .about .about-box {
        width: 50%; /* frame takes half of section width */
      }

      .about .about-image {
        width: 50%; /* image gets its own half */
      }
    }

    .services ul {
      list-style: none;
      max-width: 800px;
      margin: 0 auto;
    }

    .services li {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      padding: 12px;
      border-bottom: 1px solid #ccc;
      text-align: left;
      transition: background 0.2s ease;
    }

    .services li:hover {
      background: #f0f0f0;
    }

    .services li:hover .service-price {
      color: #000;
    }

    .service-info {
      max-width: 70%;
    }

    .service-info h3 {
      margin-bottom: 4px;
    }

    .service-info p {
      font-size: 14px;
      color: #555;
    }

    .service-price {
      font-weight: bold;
      white-space: nowrap;
    }

    .services li {
      padding: 12px;
      border-bottom: 1px solid #ccc;
    }

    .testimonials {
      overflow: visible;
      background: #ffffff; /* same background as About Us */
    }

    /* === CUSTOMER REVIEWS (WORKING LOOP) === */
    .testimonials { overflow: visible; }

    .reviews-intro {
      margin-bottom: 30px; /* increased spacing: +15px */
      max-width: 950px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .reviews-frame {
      max-width: 900px;
      margin: 0 auto;
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: 10px;
      padding: 24px;
      background: linear-gradient(180deg, #ffffff, #f7f7f7);
      box-shadow: 0 18px 40px rgba(0,0,0,0.08);
      overflow: hidden; /* nothing escapes */
    }

    .reviews-track {
      display: flex;
      transition: transform 0.35s ease;
      will-change: transform;
    }

    .review {
      flex: 0 0 calc(100% / 3); /* exactly 3 on desktop */
    }

    .review-inner {
      margin: 0 10px;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 10px;
      padding: 20px;
      background: #fff;
      font-style: italic;
      font-size: 14px;
      line-height: 1.7;
      height: 100%;
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    }
    

    .review-author {
      margin-top: 14px;
      font-weight: bold;
      font-style: normal;
      font-size: 13px;
      color: #111;
      letter-spacing: 0.3px;
    }

    .reviews-nav {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-top: 20px;
    }

    .reviews-nav button {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid #bbb;
      background: linear-gradient(135deg, #f2f2f2, #dcdcdc);
      color: #555;
      cursor: pointer;
      font-size: 18px;
      font-weight: bold;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 14px rgba(0,0,0,0.12);
      transition: all 0.25s ease;
    }

    .reviews-nav button:hover {
      background: linear-gradient(135deg, #e6e6e6, #cfcfcf);
      color: #111;
      box-shadow: 0 10px 22px rgba(0,0,0,0.18);
      transform: translateY(-2px);
    }

    .reviews-nav button:active {
      transform: translateY(0);
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .reviews-google-btn {
    display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 35px;

  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(20,20,20,0.85),
    rgba(0,0,0,0.95)
  );

  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;

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

  box-shadow:
    0 8px 30px rgba(0,0,0,0.45),
    inset 0 0 0 rgba(255,255,255,0);

  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.reviews-google-btn:hover {
  transform: translateY(-2px);

  background: linear-gradient(
    135deg,
    rgba(30,30,30,0.95),
    rgba(0,0,0,1)
  );

  border-color: rgba(255,255,255,0.45);

  box-shadow:
    0 12px 40px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.15);
}

    @media (max-width: 767px) {
      .review { flex: 0 0 100%; }
    }

    .cta {
      background: #111;
      color: #fff;
      text-align: center;
    }

  

footer {
      background: #000;
      color: #aaa;
      padding: 20px 16px;
      font-size: 14px;
    }



   

    /* ===== Contact Section ===== */
    .contact {
      background: #000;
      color: #fff;
      padding-bottom: 1px;
    }

    .contact h2 {
      color: #fff;
    }

    .contact-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 24px;
      text-align: left;
    }

    .contact-info p {
      margin-bottom: 12px; /* tighter spacing */
      font-size: 15px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .contact-info strong {
      display: block;
      margin-bottom: 2px; /* smaller gap */
      font-weight: bold;
    }

    .contact-info a {
      color: #fff;
      text-decoration: underline;
    }

    .contact-icon {
      font-size: 18px;
      line-height: 1;
      margin-top: 2px;
      opacity: 0.9;
    }

    .contact-text {
      line-height: 1.5;
    }

  

    @media (min-width: 768px) {
      .contact-inner {
        flex-direction: row;
        gap: 40px;
      }

      .contact-info,
      .contact-map {
        width: 50%;
        transform: translateX(40px);
      }
    }

    
    

    /* ===== FAQ (Interactive) – FIXED ===== */
    .faq-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }

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

    .faq-question {
      width: 100%;
      background: #000;
      color: #fff;
      padding: 18px 20px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      cursor: pointer;
      text-align: left;
      border-radius: 6px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-arrow {
      display: inline-block;
      transition: transform 0.25s ease;
      font-size: 18px;
      margin-left: 16px;
    }

    /* CLOSED by default */
    .faq-answer {
      background: #fff;
      color: #000;
      padding: 18px 20px;
      border-radius: 0 0 6px 6px;
      display: none; /* IMPORTANT */
      box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    }

    /* OPEN only when active */
    .faq-item.active .faq-answer { display: block; }
    .faq-item.active .faq-arrow { transform: rotate(180deg); }

    /* ===== Desktop ===== */
    @media (min-width: 768px) {
      .hero h2 { font-size: 40px; }
      section h2 { font-size: 40px; }
      header, section { padding-left: 40px; padding-right: 40px; }
    }
      section h2 { font-size: 40px; }
      header, section { padding-left: 40px; padding-right: 40px; }

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0; /* trochę oddechu */
}

.footer-logo img {
  height: 48px;   /* <-- POWIĘKSZENIE */
  width: auto;
}

.about {
  padding-top: 40px;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  z-index: 1;
}

.contact-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.contact-social a:hover {
  background: #fff;
}

.contact-social a:hover .icon {
  fill: #111;
}

.icon {
  width: 16px;
  height: 16px;
  fill: #fff;
  transition: fill 0.25s ease;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

@media (max-width: 768px) {

  .contact-inner {
    flex-direction: column;
    gap: 32px;
  }

  .contact-info p {
    align-items: flex-start;
  }

  .contact-icon {
    font-size: 22px;
  }

  .contact-text {
    font-size: 15px;
    line-height: 1.6;
  }

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

  .contact-social a {
    width: 42px;
    height: 42px;
  }

  .icon {
    width: 18px;
    height: 18px;
  }

  
  .contact-map iframe {
    width: 100%;
    height: 260px;
    border-radius: 12px;
  }

}


/* ===== HAMBURGER MOBILE ONLY ===== */

.hamburger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 92px;
  right: 0;
border-radius: 12px 0 0 12px;
  width: 50vw;
  

  background: rgba(17, 17, 17, 0.85);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
  padding: 30px 24px 24px;

  flex-direction: column;
  gap: 16px;

  z-index: 999;
}

.mobile-menu a {
  position: relative;
  padding: 16px 14px;
  text-align: center;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(0,0,0,0.15)
  );

  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;

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

  box-shadow:
    0 8px 22px rgba(0,0,0,0.45),
    inset 0 0 0 rgba(255,255,255,0);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

/* ACTIVE */
.mobile-menu.active {
  display: flex;
}

/* MOBILE RULES */
@media (max-width: 768px) {

  .nav ul,
  .nav .social {
    display: none;
  }

  .hamburger {
    display: block;
  }
}


/* ===== SCISSORS HAMBURGER ===== */

.scissors-btn {
  display: none;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
}

.scissors-icon {
  width: 26px;
  height: 26px;
  transition: transform 0.35s ease;
  transform-origin: 50% 50%;
}

.scissors-btn.is-open .scissors-icon {
  transform: rotate(-180deg);
}

@media (max-width: 1023px) {
  .nav ul,
  .nav .social {
    display: none;
  }

  .scissors-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }



  .mobile-menu.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .nav .logo img {
    margin-left: -1px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .about .about-text {
    text-align: center;
  }
}


@media (max-width: 767px) {
  #services {
    padding-left: 10px;
    padding-right: 10px;
  }

  #services .why-us {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {

  /* cała sekcja */
  .contact {
    text-align: center;
  }

  /* wrapper */
  .contact-inner {
    align-items: center;
    text-align: center;
  }

  /* każdy wiersz (telefon, location, hours itd.) */
  .contact-info p {
    flex-direction: column;      /* ikona NAD tekstem */
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  /* ikony */
  .contact-icon {
    margin: 0;
  }

  /* tekst */
  .contact-text {
    align-items: center;
    text-align: center;
  }

  /* social icons */
  .contact-social {
    justify-content: center;
  }
}


 @media (min-width: 1024px) {
  .hero {
    padding: 250px 16px; /* DESKTOP */
  }
}


/* =========================
   TABLET FRIENDLY PATCH
   ========================= */
@media (min-width: 768px) and (max-width: 1023px) {

  /* HERO */
  .hero {
    padding: 150px 32px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .hero p {
    max-width: 600px;
  }

  /* SEKCJE */
  section {
    padding: 90px 32px;
  }

  section h2 {
    font-size: 34px;
  }

  /* WHY US / TEXT WIDTH */
  .why-us,
  .reviews-intro {
    max-width: 600px;
  }

  /* SERVICES */
  .services ul {
    max-width: 700px;
  }

  .services li {
    padding: 16px;
  }

  /* CONTACT */
  .contact-inner {
    max-width: 900px;
  }

  /* NAV LOGO (tablet lubi balans) */
  .nav .logo img {
    height: 52px;
    margin-left: 20px;
  }
}




/* TABLET = MOBILE */
@media (max-width: 1023px) {
  .contact-inner {
    flex-direction: column;
  }

  .contact-info,
  .contact-map {
    width: 100%;
    transform: none;
  }

  .contact-map {
    margin-top: 24px;
  }
}


/* TABLET + MOBILE = MOBILE LAYOUT */
@media (max-width: 1023px) {

  /* cały kontener */
  #contact {
    text-align: center;
  }

  /* kolumna */
  .contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* info */
  .contact-info {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
  }

  /* paragrafy */
  .contact-info p {
    justify-content: center;
    text-align: center;
  }

  /* mapa */
  .contact-map {
    width: 100%;
    max-width: 480px;
    margin: 24px auto 0;
    transform: none;
  }

  .contact-map iframe {
    width: 100%;
    height: 260px;
    display: block;
  }

}


/* =========================
   FLOATING BUTTONS LOGIC
   ========================= */

/* Call button – domyślnie UKRYTY (desktop + tablet) */
.call-button-mobile {
  display: none;
}



/* Call button – widoczny TYLKO na mobile */
@media (max-width: 767px) {
  .call-button-mobile {
    display: block;
  }
}


/* ===== SHARED HEADER + HERO BACKGROUND ===== */

.hero-wrapper {
  position: relative;
  background-image: url("images/header.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* dark overlay */
.hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}



/* hero content nad overlay */
.hero {
  position: relative;
  z-index: 1;
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(17,17,17,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: background 0.3s ease;
}

.hero-wrapper {
  position: relative;
  background-image: url("images/header.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding-top: 92px; /* wysokość headera */
}


/* MOBILE – micro extend hero background (px control) */
@media (max-width: 767px) {
  .hero-wrapper {
    padding-bottom: 40px;
  }
}


