/* *********************** */
/* Header */
/* *********************** */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e8f0ed;
  /* We use a set hight to make the navbar sticky */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 8rem;
}

/* *********************** */
/* NAVIGATION */
/* *********************** */

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #165039;
}
.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #1b6447;
}
.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #134632;
}

.main-nav-link img {
  width: 50%;
}

/* Mobile */

.btn-mobile-nav {
  border: none;
  background-color: none;
  cursor: pointer;

  display: none;
}
.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* *********************** */
/* Sticky navigation*/
/* *********************** */

.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/* *********************** */
/* Language selector (MM-004: now in-nav) */
/* *********************** */
/* Old .lang-selector__box and .lang-menu styles removed — switcher is now
   a <li class="lang-switcher"> inside .main-nav-list. See CRO Additions below. */
/* *********************** */
/* Hero Section */
/* *********************** */
.section-hero {
  background-color: #e8f0ed;
  padding: 4.8rem 0 9.6rem 0;
}

.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.heading-primary span {
  color: #1b6447;
  font-weight: 700;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 4.8rem;
}

.hero-description span {
  color: #1b6447;
  font-weight: 700;
}

.hero-img {
  width: 100%;
  border-radius: 15%;
}

.schilders {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.schilders-imgs {
  display: flex;
  align-items: center;
}
.schilders-imgs img {
  height: 6.4rem;
  width: 6.4rem;
  border-radius: 50%;
  margin-right: -1.4rem;
  border: 3px solid #e8f0ed;
}

.schilders-text {
  font-size: 1.8rem;
  font-weight: 600;
  margin-left: 3.2rem;
}

.schilders-text span {
  color: #1b6447;
  font-weight: 700;
}

/* *********************** */
/* DIENSTEN */
/* *********************** */

.onze-diensten {
  padding: 9.6rem 0;
}

.dienst-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.step-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img {
  width: 65%;
  border-radius: 15%;
}

/* *********************** */
/* CTA section */
/* *********************** */

.section-cta {
  /* padding goes from: top, right , bottom, left */
  padding: 9.6rem 0 12.8rem 0;
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /*  background-color: #1b6447; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.1);
  border-radius: 11px;
  background-image: linear-gradient(to right bottom, #5f937e, #1b6447);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #fff;
}

.cta .heading-secondary {
  color: #fff;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(95, 147, 126, 0.35),
      rgba(27, 100, 71, 0.35)
    ),
    url(../IMAGES/verf\ groen\ hensdeco\ 1.webp);
  background-size: cover;
  background-position: left;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
  font-family: inherit;
  color: #0e3224;
  border: none;
  background-color: #e8f0ed;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(232, 240, 237, 0.5);
}

/* *********************** */
/* Footer */
/* *********************** */

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  margin-bottom: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.Contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #767676;
}
.address-footer {
  margin-bottom: 2.4rem;
}
.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 3.2rem;
}

.footer-link {
  list-style: none;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

/* *********************** */
/* CRO Additions — TSK-017 */
/* *********************** */

/* HH-005: Phone number near form */
.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 3.2rem;
}
.cta-phone a {
  color: #fff;
  text-decoration: none;
}
.cta-phone a:hover {
  text-decoration: underline;
}
.cta-phone ion-icon {
  font-size: 2rem;
}

/* HH-004: WhatsApp near form */
.form-whatsapp {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #25d366;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.btn-whatsapp:hover {
  background-color: #1da851;
}
.btn-whatsapp ion-icon {
  font-size: 2rem;
}

/* HH-003: Form success message */
.form-success {
  display: none;
  color: #fff;
  font-size: 1.8rem;
  margin-top: 2rem;
  font-weight: 600;
  line-height: 1.6;
}

/* MM-004: In-nav language switcher */
.lang-switcher {
  position: relative;
  list-style: none;
}
.lang-switcher .current-lang {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #e8f0ed;
  transition: all 0.3s;
}
.lang-switcher:hover .current-lang {
  box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.2);
}
.lang-switcher .lang-options {
  display: none;
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  list-style: none;
  background-color: #e8f0ed;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.6rem 0;
  min-width: 6rem;
  box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
.lang-switcher:hover .lang-options,
.lang-switcher.open .lang-options {
  display: block;
}
.lang-switcher .lang-options li a {
  display: block;
  padding: 0.5rem 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: font-weight 0.2s;
}
.lang-switcher .lang-options li a:hover {
  font-weight: 700;
  background-color: rgba(27, 100, 71, 0.08);
}

/* LL-001: Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 2.8rem;
  right: 2.8rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.whatsapp-float ion-icon {
  font-size: 3.2rem;
}

/* LL-002: Urgency line in CTA section */
.cta-urgency {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.4rem;
  font-style: italic;
}

/* LL-004: Footer CTA column */
.footer-cta-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1.6rem;
}

/* MM-003: Testimonials section */
.section-testimonials {
  padding: 6.4rem 0;
  background-color: #f5f9f7;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 3.2rem;
  margin-top: 4.8rem;
}
.testimonial {
  background-color: #fff;
  border-left: 4px solid #1b6447;
  padding: 2.4rem 3.2rem;
  border-radius: 9px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  margin: 0;
}
.testimonial-text {
  font-size: 1.7rem;
  line-height: 1.7;
  font-style: italic;
  color: #333;
  margin-bottom: 1.6rem;
}
.testimonial-author {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1b6447;
}
