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

body {
  font-family: "Montserrat", sans-serif; 
  color: #0f1d2d;
  padding-top: 70px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* NAVBAR CSS */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 55px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.nav-toggle,
.hamburger {
  display: none;
}

.logo {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}

.nav-menu {
  display:flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a,
.services-btn,
.location-btn {
  text-decoration: none;
  border: none;
  background: none;
  color: #0d1c2d;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.75;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-menu a:hover,
.services-btn:hover,
.location-btn:hover {
  color: #147bd1;
}

/* BLUE BUTTON CSS */

.blue-btn {
  background: #147bd1;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  padding: 15px 26px;
  line-height: 1.75;  
}

.blue-btn:hover{
    background:#020d16;
}

.outline-btn {
  color: white;
  border: 1px solid white;
  padding: 15px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.small {
  padding: 10px 18px;
  font-size: 11px;
}


/* DROPDOWN CSS */

.dropdown-box {
  position: relative;
}

.dropdown-box:hover .dropdown {
    display: block;
  }

.dropdown {
   display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.18);
    z-index: 99999;
    list-style: none;
}

.dropdown a {
  display: block;
  padding: 14px 18px;
  text-transform: none;
}

.dropdown a:hover {
  color: #147bd1;
}

/* HERO CSS */

.hero {
  min-height: 600px;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.65) 10%,
      rgba(0, 0, 0, 0.25) 100%,
      rgba(0, 0, 0, 0) 10%
    ),
    url(image/dakwerken-aalst.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  position:relative;
  padding-bottom:90px;
}

.hero-content{
  margin-top: -80px;
}

.section-label {
  color: #1688db;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
}

.hero-label {
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  padding-bottom: 15px;
  letter-spacing: 2.5px;
  line-height: 1.75;
}

.hero h1 {
  font-size: 35px;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 100px;
  margin-bottom: 15px;
}

.hero h1 span {
  color: #1688db;
}

.hero-text {
  line-height: 1.6;
  margin-bottom: 20px;
  width: 900px;
  font-size: 15px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.hero-blue-btn {
  background: #147bd1;
  color: white;
  text-decoration: none;
  text-transform: none;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  line-height: 1.75;
  letter-spacing: 2px;
  margin-top: 5px;
}

.hero-blue-btn:hover{
    background:#020d16;
}

.outline-btn {
  color: white;
  border: 1px solid white;
  padding: 15px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}


/* FORM CSS */

.hero-form{
    position:absolute;
    left:50%;
    bottom:-25px;
    transform:translateX(-50%);
    width:92%;
    max-width:1400px;
}

.form-box{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1.6fr auto;
    gap:15px;

    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.form-box input{
    height:56px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 16px;
    font-size:15px;
    font-family:inherit;
}

.form-box input:focus{
    outline:none;
    border-color:#2563eb;
}

.form-box button{
    height:56px;
    padding:0 28px;

    background:#147bd1;
    color:white;

    border:none;
    border-radius:8px;

    font-weight:700;
    cursor:pointer;

    transition:.3s;
}

.form-box button:hover{
    background:#020d16;
}

/* SECTION CSS */

section {
  padding: 35px 60px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* SERVICES CSS */

.services {
  padding-top: 100px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 50px;
}

.services h2{
  text-transform: none;
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* SERVICE CARD CSS */

.service-card {
  position: relative;
  padding-bottom: 25px;
}

.service-card-wrapper {
  background: white;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  padding-bottom: 24px;
  height: 730px;
  border-radius: 8px;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.service-card-icon {
  position: absolute;
  top: 247px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #147bd1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,.15);
  z-index: 10;
}

.service-card-icon img {
  width: 32px;
  height: 32px;
}

.service-card-icon small {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  margin: 0 0 10px;
  text-transform: none;
  font-size: 20px;
  text-align: left;
  padding-left: 30px;
  padding-right: 18px;
  padding-bottom: 5px;
  padding-top: 55px;
}

.service-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #4b5563;
  padding-left: 30px;
  padding-right: 40px;
  text-align: left;
}

.service-card strong {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}

.service-card ul{
  margin:-5px 0;
  padding-left:40px;
  padding-bottom: 10px;
}

.service-card li{
  font-family: "Montserrat", sans-serif;
  margin-bottom:10px;
  margin-left: 10px;
  padding-right: 15px;
  font-size:15px;
  line-height:1.55;
  color:#4b5563;
  font-weight:400;
  text-align: left;
}


/* WARRANTY CSS */

.warranty {
  background: #132333;
  color: white;
  text-align: center;
}

.warranty h2 {
  text-transform: none;
  margin-bottom: 25px;
  font-size: 30px;
}

.warranty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.warranty-grid div {
  padding: 10px 30px;
  border-right: 1px solid rgba(255,255,255,.3);
}

.warranty h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: none;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: 400;
}

.warranty p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #ffffff;
  padding: 0 18px;
  text-align: center;
}

/* BADGE CSS */

.badge {
  width: 75px;
  height: 75px;
  background: #147bd1;
  border-radius: 50%;
  margin: 0 auto 15px;
  font-size: 28px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge img{
  width: 40px;
  height: 40px;
  object-fit: contain;
  padding-left: 0px;
  padding-top: 2px;
  margin-right: -1px;
  margin-top: 2px;
}

/* MATERIAL CSS */

.material {
  padding-top: 60px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 50px;
}

.material h2{
  text-transform: none;
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 40px;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* MATERIAL CARD CSS */

.material-card {
  position: relative;
  padding-bottom: 25px;
}

.material-card-wrapper {
  background: white;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  padding-bottom: 24px;
  height: 600px;
  border-radius: 8px;
}

.material-card-icon {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #147bd1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,.15);
  z-index: 10;
}

.material-card-icon img {
  width: 40px;
  height: 40px;
}

.material-card h3 {
  margin: 0 0 10px;
  text-transform: none;
  font-size: 18px;
  text-align: left;
  padding-left: 30px;
  padding-right: 18px;
  padding-bottom: 5px;
  padding-top: 190px;
}

.material-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 13px;
  line-height: 1.7;
  color: #4b5563;
  padding-left: 30px;
  padding-right: 40px;
  text-align: left;
}

.material-card strong {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}

.material-card ul{
  margin:-5px 0;
  padding-left:40px;
  padding-bottom: 10px;
}

.material-card li{
  font-family: "Montserrat", sans-serif;
  margin-bottom:10px;
  margin-left: 10px;
  padding-right: 15px;
  font-size:15px;
  line-height:1.55;
  color:#4b5563;
  font-weight:400;
  text-align: left;
}

/* PROCESS CSS */

.process {
  background: #132333;
  color: white;
  text-align: center;
}

.process h2 {
  text-transform: none;
  margin-bottom: 25px;
  font-size: 30px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(255,255,255,.25);
}

.process-item {
  position: relative;
  padding: 10px 30px;
}

.process-number {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #147bd1;
  color: white;
  font-size: 16px;
  font-weight: 600;

  display: flex;
  justify-content: center;
  align-items: center;

  border: 4px solid #132333;
  position: relative;
  z-index: 2;
}

.process-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 18px;

  border: 2px solid #147bd1;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.process-icon img {
  width: 40px;
  height: 40px;
}

.process h3 {
  text-transform: none;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: 500;
}

.process p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #ffffff;
  padding: 0 18px;
}

/* AREAS CSS */

.areas {
  background:
    linear-gradient(90deg, white 0 35%, rgba(255,255,255,.55)),
    url("image/locaties.jpg");
  background-position: center;
}

.areas h2 {
  text-transform: none;
  font-size: 40px;
  padding-top: 10px;
  padding-bottom: 5px;
}

.areas p {
  padding-top: 10px;
  font-size: 18px;
}

.areas ul {
  list-style: none;
  margin: 15px 0;
  line-height: 1.8;
}

.areas li::before {
  content: "● ";
  color: #147bd1;
  font-size: 18px;
}

/* REVIEWS CSS */

.reviews {
  text-align: center;
}

.reviews h2 {
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 20px;
}

.review {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  padding: 25px;
  color: #147bd1;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}


.review p {
  color: #0f1d2d;
  margin-top: 10px;
  line-height: 1.5;
}

/* INSPECTION CSS */

.inspection {
  background: #126fc0;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  padding-top: 100px;
}

.inspection h2 {
  font-size: 30px;
  text-transform: none;
  margin-top: -60px;
  padding-left: 5px;
  padding-bottom: 10px;
}

.inspection p {
  font-size: 17px;
  padding-top: 10px;
  line-height: 1.75;
  padding-left: 5px;
}

.inspection form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: -50px;
}

.inspection input,
.inspection textarea {
  padding: 13px;
  border: none;
}

.inspection textarea,
.inspection button {
  grid-column: span 2;
}

.inspection .full-width {
  grid-column: 1 / -1; 
}

.inspection button {
  background: #071827;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  padding: 15px 26px;
  line-height: 1.75;
  cursor: pointer;
}

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

/* FOOTER CSS */

footer {
  background: #071827;
  color: white;
  padding: 35px 60px 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

footer img{
  height: 100px;
  padding-left: 20px;
  margin-top: -20px;
  
}

.footer h3{
      font-size:24px;
      margin-bottom:20px;
      color:white;
    }

footer p {
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 50px;
}

.footer ul{
      list-style:none;
    }

.footer ul li{
      margin-bottom:13px;
    }

.footer ul li a{
      color:white;
      text-decoration:none;
      font-size:15px;
      font-weight:700;
    }

.footer-btn {
  display: inline-block;
  background: #147bd1;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 50px;
  line-height: 1.75;
  margin-top: 15px;
  letter-spacing: 2px;
}

.footer-btn:hover{
    background:#020d16;
}

/* TEXT LINK CSS*/
.text-link{
   color:white;
   font-weight:700;
   text-decoration:underline;
}

.text-link:hover{
   color:#147bd1;
   text-decoration:underline;
}

/* MOBILE */

@media (max-width: 800px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-top: 56px;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 56px;
    padding: 0 16px;
    z-index: 99999;
    overflow: hidden;
  }

  .logo {
    padding-left: 0;
  }

  .logo img {
    height: 44px;
    width: auto;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

  .blue-btn {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    max-width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 16px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    overflow-x: hidden;
  }

  .nav-toggle:checked ~ .nav-menu {
    display: flex;
  }

  .nav-menu li,
  .nav-menu a,
  .services-btn {
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: left;
    padding: 6px 0;
    font-weight: 550;
  }

  .dropdown-box:focus-within .dropdown {
    display: block;
  }

  .dropdown {
    position: static;
    display: none;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    padding-left: 14px;
    border-left: 2px solid #147bd1;
  }

  .hero {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 40px 16px 20px;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.05;
    margin-top: 10px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 13px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .blue-btn,
  .outline-btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-form {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 24px;
  }

  .form-box {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    padding: 16px;
  }

  .form-box input,
  .form-box button {
    width: 100%;
    max-width: 100%;
    height: 52px;
    margin: 0;
  }

  section {
    width: 100%;
    max-width: 100%;
    padding: 30px 16px;
    overflow-x: hidden;
  }

  .services {
    padding-top: 60px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    width: 300px;
  }

  .service-card h3 {
  line-height: 1.75;
}

  .service-card {
  position: relative;
  padding-bottom: 25px;
  margin-left: -40px;
  margin-right: -10px;
}

.service-card-wrapper {
  padding-bottom: 24px;
  height: 840px;
}

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card-icon {
  position: absolute;
  top: 247px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #147bd1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,.15);
  z-index: 10;
}

.service-card-icon img {
  width: 32px;
  height: 32px;
}
  
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .warranty-grid {
  grid-template-columns: 1fr;
  justify-items: center;
}

  .warranty-grid div {
  border-right: none;
  padding: 25px 15px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

  .badge {
  width: 75px !important;
  height: 75px !important;
  min-width: 75px;
  min-height: 75px;
  max-width: none !important;

  border-radius: 50%;
  background: #147bd1;

  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 auto 20px;

  font-size: 28px;
  font-weight: 500;
}

  .warranty h3 {
  text-align: center;
}

  .warranty p {
  text-align: center;
  max-width: 280px;
  margin: 10px auto 0;
}

.material {
    padding-top: 45px;
    padding-left: 65px;
    padding-right: 50px;
  }

  .material-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .material h2{
  text-align: center;
  padding-bottom: 20px;
}

.material-card {
  margin-left: -30px;
  margin-right: -10px;
}

.material-card-wrapper {
  height: 570px;
}

.material-card-icon {
    padding-top: 90px;

  }

.material-card-icon img {
  width: 40px;
  height: 40px;
  margin-top: -85px;
}

.material-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 16px;
  text-align: left;
  padding-left: 30px;
  padding-right: 18px;
  padding-bottom: 5px;
  padding-top: 180px;
}

.material-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #4b5563;
  padding-right: 30px;
  padding-left: 30px;
  text-align: left;
}

.material-card strong {
  color:#0d151b;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
}

.material-card ul{
  margin:-5px 0;
  padding-left:40px;
  padding-bottom: 10px;
}

.material-card li{
  font-family: "Montserrat", sans-serif;
  margin-bottom:10px;
  margin-left: 10px;
  padding-right: 15px;
  font-size:13px;
  line-height:1.55;
  color:#4b5563;
  font-weight:400;
  text-align: left;
}


  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .areas h2 {
  font-size: 30px;
}

  .areas p {
  font-size: 15px;
}

  .areas li {
  font-size: 15px;
}

  .inspection {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .inspection form {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .inspection textarea,
  .inspection button {
    grid-column: span 1;
  }

  footer {
    width: 100%;
    max-width: 100%;
    padding: 30px 16px 15px;
    overflow-x: hidden;
  }

  footer img {
    height: 150px;
    padding-left: 0;
    margin-top: 10px;
  }

  /* PROCESS SECTION */

.process{
    padding:50px 20px;
}

.process h2{
    font-size:23px;
    margin-bottom:40px;
}

.process-grid{
    grid-template-columns:1fr;
    justify-items:center;
}

.process-grid::before{
    display:none;
}

.process-item{
    padding:25px 15px;
    max-width:320px;
}

.process-number{
    width:40px;
    height:40px;
    font-size:16px;
    margin-bottom:18px;
}

.process-icon{
    width:75px;
    height:75px;
    margin-bottom:18px;
}

.process-icon img{
    width:36px;
    height:36px;
}

.process-item h3{
    font-size:15px;
    margin-bottom:10px;
}

.process-item p{
    font-size:14px;
    line-height:1.6;
    max-width:280px;
}

}