:root {
    --nav-height: 60px;
    --announcement-height: 52px;
  }
a{
  -webkit-tap-highlight-color: transparent;

}
.only_mobile{
  display: none;
}
@media screen and (max-width: 1024px) {
  .only_mobile{
    display: block;
  }
}
  
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 4vw;
    position: sticky;
    top: 0;
    height: var(--nav-height);
    background-color: white;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
    box-sizing: border-box;
  }
  
  .logo {
    width: 240px;
    height: auto;
    margin-left: -23%;
    transition: transform 0.3s ease;
  }
  
  .logo:hover {
    transform: scale(1.05);
  }
  
  .mobile-logo {
    display: none;
    position: absolute;
    top: 15vh;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    margin-bottom: 20px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    font-size: clamp(12px, 14px, 16px);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #6cbcb7;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #6cbcb7;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links::before {
    display: none;
  }
  
  .language-selector {
    position: relative;
    width: auto;
    user-select: none;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 14px, 16px);
    padding: 8px 0;
    margin: 8px 0;
  }
  
  .language-current {
    color: #222;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.2s ease;
    text-transform: uppercase;
  }
  
  .language-current:hover {
    color: #000;
  }
  
  .language-options {
    position: absolute;
    top: 100%;
    left: -5%;
    min-width: 80px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    border-radius: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(5px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    overflow: hidden;
    border: 1px solid #eeeeee;
    padding-left: 5px;
  }
  
  .language-options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .language-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.2s ease, background-color 0.2s ease;
  }
  
  .language-option:hover {
    background-color: #fafafa;
    color: #000;
  }
  
  .language-option::after {
    height: 0px;
  }
  
  .language-option.active {
    display: none;
  }
  
  .language-option:not(:last-child) {
    border-bottom: 1px solid #f8f8f8;
  }
  
  .language-selector::before,
  .language-selector::after {
    display: none;
  }
  
  .arrow {
    width: 10px;
    height: 10px;
    position: relative;
    transition: transform 0.2s ease;
  }
  
  .arrow::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 1px solid #222;
    border-bottom: 1px solid #222;
    transform: rotate(45deg);
    top: 2px;
    right: 2px;
  }
  
  .open .arrow {
    transform: rotate(180deg);
  }
  
  .menu-toggle {
    display: none;
  }
  
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .close-menu {
    display: none;
    position: fixed;
    top: 3rem;
    left: 1.5rem;
    cursor: pointer;
  }
  
  .close-menu.active {
    display: block;
  }
  
  
  .social-links {
    display: none;
  }
  
  @media (min-width: 1921px) {
    .nav-links a {
      font-size: 16px;
    }
  }
  
  @media (max-width: 1024px) {
    nav {
      padding: 0.5rem 0 0.5rem 5vw;
    }
  
    .logo-container {
      order: 1;
      overflow: hidden;
    }
  
    .menu-toggle {
      display: block;
      z-index: 1000;
      position: relative;
      padding: 15px;
      margin: 7px -15px 0;
    }
  
    .mobile-logo {
      display: block;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: -280px;
      height: 100vh;
      width: 280px;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: white;
      padding: 25vh 30px;
      gap: 20px;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: right 0.3s ease;
      z-index: 999;
      list-style-type: none;
    }
  
    .nav-links::before {
      content: '';
      position: absolute;
      top: 21vh;
      left: 10%;
      width: 80%;
      height: 1px;
      background-color: #e0e0e0;
      display: block;
    }
  
    .nav-links li {
      width: 100%;
      margin-bottom: 5px;
    }
  
    .nav-links a {
      font-size: 12px;
      display: block;
      width: 100%;
      text-align: left;
    }
  
    .nav-links a:hover,
    .nav-links a:focus {
      color: #A07666;
    }
  
    .language-selector {
      position: relative;
      padding: 15px 0;
      margin: 12px 0;
      width: 100%;
    }
  
    .language-current {
      justify-content: space-between;
      width: 100%;
      padding: 8px 0;
      font-size: 12px;
    }
  
    .language-options {
      width: 100%;
      left: 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
  
    .language-option {
      padding: 12px 16px;
    }
  
    .language-selector::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: #e0e0e0;
      display: block;
    }
  
    .language-selector::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: #e0e0e0;
      display: block;
    }
  
    .logo {
      width: 160px;
      margin-right: -55px;
    }
  
    .social-links {
      position: absolute;
      bottom: 40px;
      left: 0%;
      width: 60%;
      display: flex;
      justify-content: center;
      gap: 25px;
    }
  
    .social-links a {
      color: #333;
      font-size: 20px;
      border: none;
      width: fit-content;
    }
  
    .social-links a svg {
      width: 18px;
      height: 18px;
      transition: transform 0.2s ease;
    }
  
    .social-links a:hover svg {
      transform: scale(1.1);
      color: #0077b6;
    }
  }











.container_form {
  display: flex;
  width: 90%;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  margin: 20px auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form section styling */
.container_form .form-section {
  flex: 1;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Banner section styling */
.container_form .banner-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  animation: slideBg 0.9s ease forwards;
}

.container_form .banner-section:hover {
  opacity: 1;
}

@keyframes slideBg {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Form title styling */
.container_form .form-section h1 {
  font-size: 24px;
  color: #333;
  font-weight: 400;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.3s;
  text-align: center;
  margin: 0 auto 10px;
  text-transform: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Form field groups */
.container_form .form-group {
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.container_form .form-group:nth-child(1) {
  animation-delay: 0.4s;
}

.container_form .form-group:nth-child(2) {
  animation-delay: 0.5s;
}

.container_form .form-group:nth-child(3) {
  animation-delay: 0.6s;
}

/* Form labels */
.container_form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-size: 14px;
}

/* Form input fields */
.container_form .form-group input[type="text"],
.container_form .form-group input[type="email"],
.container_form .form-group input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.container_form .form-group input[type="text"]:focus,
.container_form .form-group input[type="email"]:focus,
.container_form .form-group input[type="tel"]:focus {
  border-color: #4cb8b8;
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 184, 184, 0.1);
}

/* Submit button styling */
.container_form .submit-btn {
  background-color: #7DD3D3;
  color: white;
  border: none;
  padding: 10px;
  width: 40%;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 15px auto 20px;
  box-shadow: 0 4px 8px rgba(125, 211, 211, 0.3);
  display: block !important;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.8s;
}

.container_form .submit-btn:hover {
  background-color: #6BC4C4;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(125, 211, 211, 0.4);
}

/* Banner content styling */
.container_form .banner-content {
  z-index: 99;
  opacity: 0;
  animation: fadeInSlide 0.7s ease forwards 0.9s;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.container_form .banner-content span {
  color: #ffffff;
  font-size: 32px;
  /*margin-bottom: 10px;*/
  line-height: 1.3;
  font-weight: 500;
  width: 100%;
}

.container_form .banner-content .highlight {
  color: #8ff0f0;
  font-weight: 400;
}

.container_form .banner-content p {
  color: #fffefe;
  font-size: 18px;
  width: 80%;
}

/* Banner image styling */
.container_form .plant-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3); /* Dark overlay */
  z-index: 1;
}



/* reCAPTCHA styling */
.container_form .recaptcha-container {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.container_form .g-recaptcha {
  margin: 0 auto;
  transform-origin: center;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.7s;
}

/* Success message styling */
.container_form .success-message {
  display: none;
  color: #4cb8b8;
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.container_form .success-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* Social media links styling */
.container_form .social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.9s;
  margin-top: auto;
  padding-top: 10px;
  margin-bottom: 1px;

}

.container_form .social-links a {
  color: #333;
  font-size: 20px;
  border: none;
  width: fit-content;
  transition: color 0.2s ease;
}

.container_form .social-links a svg {
  width: 18px;
  height: 18px;
  transition: color 0.2s ease;
}

.container_form .social-links a:hover {
  color: #4cb8b8;
}

/* Instagram icon */
.container_form .social-links .instagram-icon svg {
  width: 24px;
  height: 24px;
}

/* Facebook icon */
.container_form .social-links .facebook-icon svg {
  width: 24px;
  height: 24px;
}

/* TikTok icon */
.container_form .social-links .tiktok-icon svg {
  width: 24px;
  height: 24px;
}

/* Notification popup styling */
.notification-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: white;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  animation: slideIn 0.3s ease-out forwards;
  max-width: 300px;
}

.notification-content {
  display: flex;
  align-items: center;
}

.notification-content i {
  margin-right: 12px;
  font-size: 20px;
}

.notification-success {
  background-color: #e7f7ee;
  border-left: 4px solid #28a745;
}

.notification-success i {
  color: #28a745;
}

.notification-error {
  background-color: #feeef0;
  border-left: 4px solid #dc3545;
}

.notification-error i {
  color: #dc3545;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Responsive design */
@media (max-width: 1024px) {
  .container_form {
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
    max-width: 500px;
    animation-duration: 0.6s;
    margin-bottom: 60px;
  }

  .container_form .banner-section {
    padding: 30px 20px;
    min-height: 250px;
    animation: none;
    flex:0.7;
  }

  .container_form .banner-content {
    width: 100%;
  }

  .container_form .banner-content span {
    font-size: 24px;
    /*margin-bottom: 15px;*/
  }

  .container_form .banner-content p {
    font-size: 16px;
    width: 100%;
  }

  .container_form .form-section {
    padding: 25px 20px;
  }

  .container_form .social-links {
    /*margin-top: 40px;*/
    margin-bottom: 0;
    position: relative;
    align-self: center;
    bottom: 0px;
  }

  .container_form .g-recaptcha {
    transform: scale(0.85);
    transform-origin: center;
    margin: 0 auto;
  }

  .container_form .submit-btn {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .container_form {
    width:90%;
    border-radius: 15px;
    /*height: 100%;*/
    max-width: none;
  }

  .container_form .banner-section {
    min-height: 300px;
    padding: 20px 15px;
  }

  .container_form .form-section {
    padding: 20px 15px;
    flex: 1;
    overflow-y: auto;
  }

  .container_form .banner-content span {
    font-size: 24px;
  }

  .container_form .banner-content p {
    font-size: 14px;
  }

  .container_form .submit-btn {
    width: 100%;
  }

  .container_form .form-section h1 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .container_form .g-recaptcha {
    transform: scale(0.78);
    transform-origin: center;
    margin: 0 auto;
  }
}
/* Contact information styling */
.container_form .contact-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards 0.35s;
  flex-wrap: wrap;
}

.container_form .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 14px;
}

.container_form .contact-item svg {
  color: #7DD3D3;
}

.container_form .contact-item a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.container_form .contact-item a:hover {
  color: #4cb8b8;
}

/* Responsive adjustments for contact info */
@media (max-width: 480px) {
  .container_form .contact-info {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}









.footer {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 200px;
  position: relative;
  width: 100%;
  overflow: hidden;
  /*background-color: #f5f7f8;*/
  margin-top: 50px;
}

.footer-content {
  margin-top: 50px;
  position: relative;
  width: 100%;
  padding: 25px 5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  background-color: rgba(80, 151, 161, 0.07);

}

.footer-content .logo-img {
  width: 280px;
  height: auto;
  max-height: 140px;
  object-fit: contain;
}

.footer-content img {
  margin-left: -4%;
}

.links-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  flex: 1;
}

/* Title styling for both title classes */
.title-links,
.title-contact {
  margin: 0 0 12px 0;
  font-weight: 500;
  font-size: 1.2em;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 8px;
}

.title-links::after,
.title-contact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #5097A1;
}

/* Title spanning first 2 columns */
.title-links {
  grid-column: 1 / 3;
  margin-bottom: 0.5rem;
}

/* Title above 3rd column */
.title-contact {
  grid-column: 3;
  margin-bottom: 0.5rem;
}

.text-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #333;
  font-size: 1em;
  min-width: 180px;
}

.text-box a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
}

.text-box a:hover {
  color: #5097A1;
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  padding: 15px 20px;
  background-color: #5097A1;
  color: white;
  width: 100%;
  font-size: 0.75em;
}

.copyright p {
  margin: 5px 0;
}

.copyright a {
  color: white;
  text-decoration: underline;
  font-weight: 500;
}

.copyright a:hover {
  color: #e6e6e6;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  .footer-content {
    padding: 30px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .links-wrapper {
    width: 100%;
    max-width: 800px;
    gap: 1.2rem;
  }

  .footer-content .logo-img {
    width: 300px;
    margin: 0 auto 20px auto;
  }

  .footer-content img {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {


  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0 0;
    gap: 15px;
  }

  .footer-content img {
    margin: 0 auto;
  }


  .links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
  }

  .title-links,
  .title-contact {
    grid-column: auto;
    color: #5097A1;
    text-align: center;
    margin: 15px 0;
  }

  .title-links::after,
  .title-contact::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    background-color: #333;
  }

  .text-box {
    align-items: center;
    max-width: 100%;
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 0;
  }

  .text-box:last-child {
    margin-bottom: 0;
  }

  .text-box a {
    padding: 8px 0;
  }

  .text-box a:hover {
    transform: none;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    min-height: auto;
  }

  .footer-content {
    gap: 10px;
  }



  .title-links,
  .title-contact {
    font-size: 1.1em;
    margin-bottom: 8px;
  }

  .text-box {
    font-size: 0.95em;
    gap: 8px;
    padding: 12px 15px;
  }

  .text-box a {
    padding: 6px 0;
  }
}

@media screen and (max-width: 360px) {

  .text-box {
    padding: 10px 12px;
    font-size: 0.9em;
  }

  .title-links,
  .title-contact {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .title-contact {
    order:3;
  }
  .box1{
    order:1;
  }
  .box2{
    order:2;
  }
  .box3{
    order:4;
  }
}

