
    * { margin: 0; padding: 0; box-sizing: border-box; font-size: 62.5%; font-family: sans-serif; }

    html {
      scroll-behavior: smooth;
    }


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

    
    .hero-video video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;           
      z-index: 1;
      
    }

 
    .hero-video::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.4);   
      z-index: 2;
    }

    .navbar {
      position:fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;                 
      transition: all 0.3s ease;
       background: rgba(0, 0, 0, 0.404);
      backdrop-filter: blur(5px);
    }


    .hamburger {
        display: none;
        cursor: pointer;
    }

    .bar {
        display: block;
        width: 2.5rem;
        height: 0.3rem;
        margin: 5px auto;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        background-color: white;
    }

    .logo {
      color: white;
      font-size: 28px;
      font-weight: bold;
      letter-spacing: 2px;
      text-decoration: none;
    }

    .logo-cont {
      display: flex;
      flex-direction: column;
    }

    .secondary {
      font-size: 1.2rem;
    }

    .nav-links {
        display: flex;
        gap: 1.5rem;
        list-style: none;
    }

    .navbar-link {
      color: white;
      text-decoration: none;
      margin-left: 30px;
      font-size: 1.6rem;
      text-transform: uppercase;
      border: solid 0.1px white;
      padding: 1.2rem 1.6rem;
    }

    .navbar-link:hover {
        color: black;
        background-color: white;
        transition: all 0.3s;
    }
    
    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 5;
      width: 90%;
      max-width: 1200px;
    }
/* 
    .headline {
        font-weight: 400;
        font-size: 20rem;
    } */

    .hero-content h1 {
      font-size: 8rem;
      margin-bottom: 20px;
      line-height: 1.1;
      font-weight: 400;
    }

    .hero-content p {
      font-size: 2.4rem;
      margin-bottom: 40px;
    }


    .about {
  padding: 100px 20px;
  background-color: #e7e7e7;
}

.section-title {
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 80px;
  color: #333;
  font-weight: 600;
}

.about-container {
  display: flex;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.about-map-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #e8e8e8;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-map-column h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.about-map iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  border: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.about-text-column {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.text-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.text-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7); 
  z-index: 2;
}

.text-content {
  position: relative;
  z-index: 3;
  padding: 60px 50px;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-content h3 {
  font-size: 3.5rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

.company-text {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: justify;
}

.company-text strong {
  font-size: 1.6rem;
}

.company-text strong {
  color: #ffcc00;
  font-weight: 600;
}


    .how-it-works {
  background-color: #e7e7e7; 
  padding: 100px 20px;
  border-top: 1px solid #ddd;
}

.offer-title-main {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 80px;
  color: #333;
  font-weight: 600;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto 120px auto;
  padding: 60px;
  background: #e8e8e8;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #333;
}

.service-desc {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #555;
}

.service-list {
  margin-left: 30px;
  list-style: disc;
}

.service-list li {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #555;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.service-image img:hover {
  transform: scale(1.03);
}



  .contact-section {
    position: relative;
    padding: 100px 20px;
    background-image: url('kostek img/WhatsApp Image 2025-12-01 at 10.44.18 (1).jpeg'); 
    background-position: center;
    color: #ffffff;
  }


  .contact-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }

  .contact-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }

  .contact-text h2,
  .contact-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }

  .contact-text ul {
    list-style: none;
    padding: 0;
    line-height: 2;
  }

  .contact-text ul li {
    position: relative;
    padding-left: 30px;
    font-size: 1.6rem;
  }

  .contact-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffcc00; 
    font-weight: bold;
    font-size: 1.6rem;
  }

  .form-subtitle {
    margin-bottom: 32px;
    font-size: 1.6rem;
    opacity: 0.9;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.6rem;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 1.6rem;
    transition: background-color 0.3s;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px #ffcc00;
  }

  .submit-btn {
    align-self: flex-start;
    padding: 16px 40px;
    background-color: #ffcc00;
    color: #333;
    font-weight: bold;
    font-size: 1.6rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .submit-btn:hover {
    background-color: #e6b800;
  }


.gallery-section {
  padding: 100px 20px;
  background-color: #e7e7e7;
  text-align: center;
}

.gallery-section h2 {
  font-size: 4rem;
  margin-bottom: 60px;
  color: #333;
}

.gallery-brick {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  width: 280px;
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.12);
}


.gallery-brick > .gallery-item:nth-child(4n+2),
.gallery-brick > .gallery-item:nth-child(4n+3) {
  margin-top: 60px;
}



.load-more-wrapper {
  text-align: center;
  margin-top: 60px;
}

.load-more-btn {
  padding: 16px 40px;
  font-size: 1.8rem;
  font-weight: bold;
  background-color: #ffcc00;
  color: #333;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.load-more-btn:hover {
  background-color: #e6b800;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 30px; 
  flex-wrap: wrap;
}

.collapse-btn {
  background-color: #ffcc00;
}

.collapse-btn:hover {
  background-color: #e6b800;
}

.footer {
  background-color: #1a1a1a;
  color: #ddd;
  padding: 80px 20px 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid #333;
}

.footer-column h3,
.footer-column h4 {
  color: #ffcc00;
  margin-bottom: 20px;
  font-size: 2rem;
}

.footer-logo {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.footer-desc {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #aaa;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffcc00;
}

.footer-contact {
  list-style: none;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8;
}

.footer-contact a {
  color: #ffcc00;
  text-decoration: none;
  font-size: 1.6rem;
}

.footer-contact li strong {
  font-size: 1.6rem;
}

.footer-contact li  {
  font-size: 1.6rem;
}

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


.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
  font-size: 1.4rem;
  color: #888;
}

.year {
  font-size: 1rem;
}

.footer-bottom a {
  color: #ffcc00;
  text-decoration: none;
}

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

