* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      color: #fff;
    }

    /* HEADER */
    .header {
      width: 100%;
      height: 70px;
      background: #fff;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 2%;
      border-bottom: 1px solid #e0e0e0;
    }

    .logo {
      display: flex;
      align-items: center;
      font-weight: bold;
      color: #004c4c;
      font-size: 1rem;
    }

    .logo img {
      height: 45px;
      margin-right: 10px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 25px;
      transition: transform 0.4s ease-in-out;
    }

    .nav a {
      text-decoration: none;
      color: #004c4c;
      font-weight: bold;
      font-size: 0.9rem;
    }

    .lang {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .lang img {
      height: 16px;
    }

    /* Hamburger Icon */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1100;
      transition: transform 0.3s ease;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #004c4c;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* When active → X icon */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* HERO */
    .hero {
      position: relative;
      height: 100vh;
      background: url('../images/bg.jpg') center center / cover no-repeat;
      display: flex;
      align-items: center;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
    }

    .hero-inner {
      display: flex;
      align-items: center;
      gap: 60px;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .hero-image {
      flex: 0 0 auto;
    }

    .hero-image img {
      height: 500px;
      width: auto;
      object-fit: cover;
    }

    .hero-text h1 {
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 20px;
    }
	.hero-text {
		text-align: center;
		width: 100%;
	}
    .hero-text p {
      font-size: 1rem;
      line-height: 1.6;
	  width: 700px;
	  margin: 50px auto;
      color: #e0e0e0;
    }
	
	.title-part1 {
		font-size: 90px;
	}
	.title-part2 {
		font-size: 72px;
	}
    .btn {
      display: inline-block;
      padding: 12px 28px;
      border: 2px solid #fff;
      border-radius: 30px;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
    }

    .btn:hover {
      background: #fff;
      color: #065f63;
    }
	
	.center-profile {display: none;}
	.left-profile {display: block;}
    /* --- Tablet adjustments (1024px breakpoint) --- */
	@media (max-width: 1350px) {
	.title-part1 {
		font-size: 70px;
	}
	.title-part2 {
		font-size: 56px;
	}
	.hero-text p {
		width: 500px;
	}
	.hero-inner {
		gap: initial;
	}
	}
    @media (max-width: 1150px) {
	.title-part1 {
		font-size: 50px;
	}
	.title-part2 {
		font-size: 40px;
	}
	.hero-text p {
		width: 400px;
	}
	.hero-inner {
		gap: initial;
	}
	}
    @media (max-width: 1024px) {
      .hero-inner {
        gap: 40px;
      }
      .hero-image img {
        height: 400px;
      }
    }
	@media (max-width: 600px) {
		.hero-text p {
			width: 280px;
		}
		.title-part1 {
        font-size: 30px;
		}
		.title-part2 {
        font-size: 24px;
		}
	}
    /* --- Mobile styles (768px and below) --- */
    @media (max-width: 950px) {
	.center-profile {display: block;}
	.left-profile {display: none;}
		.hero {
			margin-top: 70px;
			align-items: initial;
		}
      /* Show hamburger */
      .hamburger {
        display: flex;
      }

      /* Stack hero content */
      .hero-inner {
        flex-direction: column;
        text-align: center;
      }
      .hero-image img {
        height: 300px;
      }

      /* Full screen nav overlay */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: transform 0.4s ease-in-out;
      }

      .nav.show {
        transform: translateY(0);
      }

      .nav a {
        color: #004c4c;
        font-size: 1.2rem;
      }

      /* Hide the language block on mobile for cleaner look (optional) */
      .lang {
        margin-top: 20px;
      }
    }
	/* SERVICES */
.services {
  width: 100%;
  text-align: center;
  padding: 80px 5%;
  background: #fff;
  color: #000;
}

.services h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #006666;
  margin-bottom: 20px;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1rem;
  line-height: 1.6;
}

.services-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  background: #e9e9e9;
  padding: 40px 20px;
  border-radius: 12px;
  flex: 1;
  min-width: 250px;
  max-width: 32%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.service-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    max-width: 100%;
  }
}
/* MODERN WHITE + GREEN FOOTER */
.footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 8%; /* modern height */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 35px;
}

.footer-links a {
  position: relative;
  color: #004c4c; /* modern green */
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #004c4c;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #0b7d6b;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #777;
  letter-spacing: 0.3px;
}

/* Mobile styling */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* --- PAGE TEMPLATE STYLING --- */
.page-hero {
  background: linear-gradient(120deg, #004c4c, #065f63);
  padding: 100px 5% 60px;
  text-align: center;
  color: #fff;
  margin-top: 70px; /* avoid header overlap */
}

.page-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: "";
  display: block;
  margin: 8px auto 0;
  width: 60px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Content section */
.page-content {
  padding: 60px 5%;
  background: #fff;
  color: #333;
}

.page-content .container {
  max-width: 900px;
  margin: 0 auto;
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.page-content a {
  color: #004c4c;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
  font-weight: bold;
}

.page-content a:hover {
  border-bottom: 2px solid #004c4c;
}

/* Buttons inside page */
.page-content .btn {
  display: inline-block;
  padding: 12px 28px;
  background: #004c4c;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.page-content .btn:hover {
  background: #0b7d6b;
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.2rem;
  }
}
.wpml-ls-legacy-dropdown {
    width: 90px;
    max-width: 100%;
}
.wpml-ls-legacy-dropdown a {
	border: initial !important;
}
/* --- CONTACT PAGE --- */
.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
}

.contact-section {
  background: #fff;
  padding: 60px 5%;
}

.contact-container {
  display: flex;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}
.contact-info {
    color: #000;
}
.wpcf7-text {
    width: 90%;
    margin: 10px auto;
    display: block;
}
.contact-form-wrapper button.btn, .wpcf7 input[type="submit"] {
    margin: 10px auto;
    display: block;
}
.wpcf7-textarea {
    width: 90%;
    margin: 10px auto;
    display: block;
}
.contact-info h2, .contact-form h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #004c4c;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-info a {
  color: #004c4c;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  border-color: #004c4c;
  outline: none;
}

.contact-form-wrapper button.btn {
  background: #004c4c;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-wrapper button.btn:hover {
  background: #0b7d6b;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
/* --- CONTACT FORM STYLING --- */
.contact-form-wrapper,
.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Inputs and textareas */
.contact-form-wrapper input,
.contact-form-wrapper textarea,
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus styles */
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: #004c4c;
  box-shadow: 0 0 0 3px rgba(14, 155, 133, 0.2);
  outline: none;
}

/* Placeholder text color */
.contact-form-wrapper ::placeholder,
.wpcf7 ::placeholder {
  color: #999;
}

/* Submit button */
.contact-form-wrapper button.btn,
.wpcf7 input[type="submit"] {
  background: #004c4c;
  color: #fff;
  font-weight: bold;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
}

.contact-form-wrapper button.btn:hover,
.wpcf7 input[type="submit"]:hover {
  background: #0b7d6b;
}

.contact-form-wrapper button.btn:active,
.wpcf7 input[type="submit"]:active {
  transform: scale(0.98);
}

/* Error messages (Contact Form 7) */
.wpcf7-not-valid-tip {
  font-size: 0.9rem;
  color: #d9534f;
  margin-top: -8px;
}

.wpcf7-response-output {
  border-radius: 6px;
  padding: 12px 15px;
  margin-top: 15px;
  font-size: 0.95rem;
}

.wpcf7-mail-sent-ok {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.wpcf7-validation-errors {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .contact-form-wrapper input,
  .contact-form-wrapper textarea,
  .wpcf7 input,
  .wpcf7 textarea {
    font-size: 0.95rem;
    padding: 12px;
  }
  .contact-info, .contact-form {
    min-width: 0px;
  }
}
.nr-text-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.nr-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.nr-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.nr-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #86C8BC;
}

.nr-content {
    font-size: 1rem;
    line-height: 1.5;
    color: white;
    opacity: 0.9;
}

.nr-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.nr-dot {
    width: 10px;
    height: 10px;
    background: gray;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.nr-dot.active {
    background: #86C8BC;
}

/* FAQ START */

.content p {
    font-size: 1rem;
}

/* FAQ END */