*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f5f5;
    color:#111;
}

header{
    width:100%;
    height:90px;
    padding:0 8%;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 200px;
    justify-content:space-between;
    align-items:center;
    background:white;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
}

html{
    scroll-behavior:smooth;
}

.logo img{
    height:90px;
}

.logo h1{
    font-size:42px;
    letter-spacing:2px;
}

.logo span{
    font-size:12px;
    letter-spacing:4px;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:black;
    font-size:14px;
    letter-spacing:1px;
}

.zadzwon{
    font-size:20px;
    color:#111111bd;
}
.zadzwon p{
    font-size:25px;
    color:#111;
}

.menu-toggle{
    display:none;
}

@media (max-width:847px){

    header{

        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;

        gap:0;

        height:auto;

        padding:10px 20px;
    }

    .logo{
        grid-column:1;
        grid-row:1;
    }

    .logo img{
        height:55px;
    }

    .zadzwon{
        grid-column:1;
        grid-row:2;

        font-size:10px;

        margin-top:-20px;
        margin-left:50px;
    }

    .zadzwon p{
        font-size:14px;
    }

    .menu-toggle{
        display:block;

        grid-column:2;
        grid-row:1 / 3;

        align-self:center;

        font-size:35px;

        cursor:pointer;
    }

    nav{
        display:none;

        position:absolute;

        top:100%;
        left:0;

        width:100%;

        background:white;

        flex-direction:column;
        align-items:center;

        gap:0px;
        padding:15px 0;

        box-shadow:0 5px 10px rgba(0,0,0,0.1);
    }

    nav.active{
        display:flex;
    }

}

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url('water_jet.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    padding:0 8%;
    color:white;
}

.hero-content{
    max-width:700px;
}

.hero-content p:first-child{
    letter-spacing:2px;
    font-size:13px;
}

.hero-content h2{
    font-size:90px;
    line-height:0.95;
    margin:30px 0;
    font-weight:700;
}

.line{
    width:90px;
    height:3px;
    background:white;
    margin-bottom:30px;
}

.description{
    font-size:20px;
    max-width:600px;
    line-height:1.7;
    color:#d7d7d7;
}

.button{
    display:inline-block;
    margin-top:40px;
    padding:18px 34px;
    border:1px solid white;
    color:white;
    text-decoration:none;
    transition:.3s;
    letter-spacing:1px;
}

.button:hover{
    background:white;
    color:black;
}

.about{
    padding:120px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    background:white;
}

.about img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.small-title{
    font-size:13px;
    letter-spacing:2px;
    color:#777;
    margin-bottom:20px;
}

.about h3,
.services h3,
.contact h3{
    font-size:52px;
    margin-bottom:25px;
}

.dark{
    background:black;
}

.about p{
    line-height:1.8;
    color:#555;
}

.services{
    padding:120px 8%;
    background:#f2f2f2;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.card{
    background:white;
    padding:45px;
    text-align:center;
}

.card h4{
    font-size:28px;
    margin-bottom:20px;
}

.card p{
    color:#666;
    line-height:1.7;
}

.contact{
    padding:120px 8%;
    background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url('krople.jpg');

    background-size:cover;
    background-position:center;

    color:white;
    text-align:center;
}

.light{
    background:white;
    color:black;
    border:none;
}

footer{
    background:#0f0f0f;
    color:white;
    padding:60px 8%;

    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

footer p{
    color:#999;
    margin-top:10px;
}

@media(max-width:900px){

    .hero-content h2{
        font-size:58px;
    }

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

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

    header{
        flex-direction:column;
        gap:20px;
    }

    nav{
        gap:20px;
    }
}

.footer{
    background:
    linear-gradient(rgba(0,0,0,.88), rgba(0,0,0,.88)),
    url('footer-bg.jpg');

    background-size:cover;
    background-position:center;

    padding:40px 8%;

    display:grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;

    color:white;
}

.bottom-left{
    grid-column: 1;
}

.footer-logo{
    width:220px;
    margin-bottom:25px;
}

.footer-left p{
    color:#d0d0d0;
    line-height:1.8;
    margin-bottom:35px;
}

.copyright{
    color:#777;
    font-size:14px;
}

.footer h4{
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:30px;
}

.footer-hours p{
    color:#d0d0d0;
    line-height:1.9;
}

.contact-item{
    display:flex;
    gap:18px;
    margin-bottom:24px;
}

.contact-item i{
    font-size:20px;
    margin-top:4px;
}

.contact-item p{
    color:#d0d0d0;
    line-height:0.6;
}

@media(max-width:900px){

    .footer{
        grid-template-columns: 1fr;
        flex-direction:column;
        gap:50px;
    }
    .bottom-left{
        grid-column: auto;
    }

}

.map-container {
  margin-top: 0px;
  border-radius: 20px;
  overflow: hidden;
}

.privacy-button {
  display: inline-block;
  /* padding: 12px 24px; */
  color: white;
  text-decoration: none;
  /* border-radius: 0px; */
  font-weight: 100;
  transition: 0.3s;
}

.privacy-button:hover {
  transform: translateY(-2px);
}

/* ===== COOKIES ===== */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 900px;

  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);

  border: 1px solid #2a2a2a;
  border-radius: 24px;

  padding: 20px 25px;

  z-index: 9999;
  box-sizing: border-box;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  color: #d5d5d5;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: white;
}

.cookie-button {
  border: none;
  background: white;
  color: black;

  padding: 12px 24px;
  border-radius: 999px;

  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;

  white-space: nowrap;
}

.cookie-button:hover {
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-button {
    width: 100%;
  }

}