* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

a{
  text-decoration: none;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #1c1c1c;
}

/* Hero Section */
.section-hero {
  position: relative;
  display: flex;
  /* flex-direction: row; */
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px;
  min-height: 100vh;
  background-image: url("assets/lines-bg.png");
  background-repeat: no-repeat;
  background-position: right center; /* Positions it on the left */
  background-size: 70% 100%; 
}

/* Left Side (Text + Form) */
.hero {
  max-width: 100%;
}

.logo {
  position: absolute;
  top: 20px;
  display: block;
  align-items: center;
}

.logo img {
  width: 110px;
  height: 90px;
  margin-right: 10px;
}

.coming-soon {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: #036939;
  color: white;
  font-weight: 100;
  padding: 10px 30px;
  border-radius: 30px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  font-size: 30px;
  border: none;
  animation: right-to-left 1s linear;
}

@keyframes right-to-left{
  0%{transform: translateX(80%);}
}

.headline{
  font-size: 4.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
  background: linear-gradient(to right, #036939 0%, rgb(255, 255, 255) 250%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 120px;
  animation: left-to-right 1.2s linear;
  animation-fill-mode: backwards;
}

@keyframes left-to-right{
  0%{transform: translateX(-110%);}
}

.subtext {
  font-size: 20px;
  margin-bottom: 20px;
  color: #2f6d5a;
  font-weight: 500;
}

.form input[type="text"]{
  width: 100%;
  max-width: 300px;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fbe8df;
  margin-bottom: 12px;
}

.form {
  display: flex;
  flex-direction: column;
}

.form button {
  padding: 12px 20px;
  font-size: 14px;
  background-color: #ff6720;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

.form button:hover {
  background-color: #e4570e;
}
.form-message {
  margin-top: 10px;
  font-weight: 500;
}

.form-message.success {
  color: #036939; /* Green for success */
}

.form-message.error {
  color: #D8000C; /* Red for error */
}

/* Socials */
.socials {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  font-size: 22px;
  color: #036939;
}

.socials a {
  color: #036939;
  text-decoration: none;
}

.socials a i{
  transform: translateY(-200px);
  animation: dropBounce 1s ease-out both;
}

.socials a:nth-child(1) i {
  animation-delay: 1.5s;
}
.socials a:nth-child(2) i {
  animation-delay: 1.6s;
}
.socials a:nth-child(3) i {
  animation-delay: 1.7s;
}
.socials a:nth-child(4) i {
  animation-delay: 1.8s;
}
.socials a:nth-child(5) i {
  animation-delay: 1.9s;
}

.socials a:visited {
  color: #036939;
}

.socials a:hover {
  color: #ff6720;
  cursor: pointer;
}

.socials a:active {
  color: #036939;
}

@keyframes dropBounce {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }
  60% {
    transform: translateY(30px);
    opacity: 1;
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Arrow Button (Image) */
.arrow-img {
  position: absolute;
  top: 50%;
  right: -20px;
  max-width: 300px;
  height: auto;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.arrow-img:hover {
  transform: translateY(-50%) scale(1.1);
}

.family-img {
  position: absolute;
  top: 65%;
  right: 15%;
  max-width: 40%;
  height: auto;
  cursor: pointer;
  transform: translateY(-50%);
  display: block;
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

/* Popup Box */
.popup-box {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
}

.popup-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #036939;
}

.popup-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.popup-actions a {
  text-decoration: none;
  background-color: #ff6720;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.2s ease;
}

.popup-actions a:hover {
  background-color: #e45a0c;
}

#closePopup {
  background-color: #ccc;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

#closePopup:hover {
  background-color: #b3b3b3;
}

/* -----------------CHANNEL PARTNER SECTION------------------------- */
.channel-partner-section {
  background: #036939;
  color: #fff;
  padding: 48px 0;
}

.channel-partner-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.channel-partner-image-wrapper {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 280px;
  max-width: 350px;
  width:100%;
  height: 100%;
  max-height: 1200px;
}

.channel-partner-image {
  width: 130%;
  border-radius: 10px;
  display: block;
  margin-bottom: -10px;
  padding-left: 50px;
}

.channel-partner-btn {
  background: #fd7326;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.channel-partner-btn:hover {
  background: #e8641d;
}

.channel-partner-form-note {
  color: rgba(211, 211, 211, 0.692);
  text-align: center;
  font-size: 15px;
  margin-top: 8px;
}

.channel-partner-content {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 280px;
}

.channel-partner-content h1 {
  font-size: 3.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 150%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
}

.channel-partner-content.animate h1{
  animation: right-to-left-2 1s linear both;
}

@keyframes right-to-left-2 {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.benefits-note {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: rgba(211, 211, 211, 0.692);
}

.tour-benefits {
  /* display: flex; */
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tour-card {
  padding: 22px 12px;
  min-width: 200px;
  flex: 1 1 200px;
}

.tour-card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.count{
  display: flex;
}

.reg-counter{
  font-size: 3rem;
  color: white;
  margin-left: 7px;
  margin-right: 7px;
}

.reg-counter span{
  color: #fd7326;
}

.tour-card .registrations {
  font-size: 0.9rem;
  color: rgba(211, 211, 211, 0.692);
  margin-top: 40px;
}

.tour-card p {
  color: rgba(211, 211, 211, 0.692);
  font-size: 1rem;
  margin-bottom: 0;
}

/* -------------CAROUSEL----------------- */

.carousel-bg {
  position: relative;
  /* min-height: 100vh; */
  background: #036939 url('assets/bg-lines2.png') center/cover repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #036939;
  opacity: 0.7; 
  pointer-events: none;
  z-index: 0;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 1100vw;
  height: 700px;
  max-height: 700px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.carousel-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}

.carousel-image.active {
  opacity: 1;
  z-index: 2;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  width: 50px;
  height: 50px;
  font-size: 2rem;
  color: #036939;
  z-index: 10;
  cursor: pointer;
  outline: none;
  transition: background 0.2s;
}

.carousel-btn.prev { left: 0; margin-left: 10px; padding-bottom: 6px;}
.carousel-btn.next { right: 0; margin-right: 10px; padding-bottom: 6px;}

.carousel-btn:hover { background: #e6f9eb; }

.bottom-banner {
  width: 100vw;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}

.bottom-banner-img {
  width: 100vw;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  box-shadow: none;
  border: none;
}

/* ---------------FOOTER---------------- */

.footer {
  width: 100%;
  background: #fff;
  color: #18683b;
  text-align: center;
  padding: 36px 0 12px 0;
  box-sizing: border-box;
  position: relative;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 100px;
  height: auto;
  margin-bottom: 4px;
}

.footer-site {
  color: #fd7326;
  font-weight: 700;
}

.footer-desc {
  font-size: 13px;
  color: #036939;
  margin-top: 2px;
}

.footer-socials {
  display: flex;
  gap: 20px;
  font-size: 40px;
  color: #036939;
  justify-content: center;
  align-items: center;
  margin: 18px 0 0 0;
}

.footer-socials a {
  color: #036939;
  text-decoration: none;
}

.footer-socials a:visited {
  color: #036939;
}

.footer-socials a:hover {
  color: #ff6720;
  cursor: pointer;
}

.footer-socials a:active {
  color: #036939;
}

.footer-icon {
  font-size: 2.4rem;
  color: #036939;
  transition: color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-icon:hover {
  color: #fd7326;
}

.footer-line {
  border: none;
  border-top: 1px solid #18683b;
  margin: 28px auto 12px auto;
  width: 90%;
}

.footer-bottom {
  font-size: 15px;
  color: #036939;
  margin-top: 0;
}

.footer-bottom a{
  text-decoration: underline;
  color: #036939;
}

.family-img-mobile {
  display: none;
}

.channel-partner-image-wrapper-phone{
  display: none;
}

@media (max-width: 600px) {

  .section-hero{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    background-image: url("assets/lines-bg.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 70% 100%; 
    padding: 40px 15px;
}

  .headline {
    margin-top: 90px;
    font-size: 3rem;
  }

  .logo {
  position: absolute;
  top: 20px;
  display: block;
  align-items: center;
}

.logo img {
  width: 90px;
  height: 70px;
  /* margin-right: 10px; */
  margin-left: 10%;
}

.coming-soon {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: #036939;
  color: white;
  font-weight: 100;
  padding: 10px 30px;
  border-radius: 30px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  font-size: 20px;
  border: none;
}


.arrow-img {
  position: absolute;
  top: calc(40% + 54%);
  right: -30px;
  max-width: 200px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrow-img:hover {
  top: calc(40% + 54%); 
}

.family-img {
    display: none;
  }

  .family-img-mobile {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 20px auto;
    border-radius: 20px;
  }

  .socials{
    margin-top: 30px;
  }

  .channel-partner-image-wrapper, 
.channel-partner-btn, 
.channel-partner-form-note {
    display: none;
}

  .channel-partner-image{
    display: none;
  }

  .channel-partner-image-wrapper-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 280px;
  max-width: 350px;
  height: 100%;
  max-height: 1200px;
  margin: 0px 32px;
}

.channel-partner-btn-phone {
  background: #fd7326;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.channel-partner-btn-phone:hover {
  background: #e8641d;
}

.channel-partner-form-note-phone {
  color: rgba(211, 211, 211, 0.692);
  text-align: center;
  font-size: 15px;
  margin-top: 8px;
}

.channel-partner-content {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 280px;
  
}

.channel-partner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 12px;
  line-height: 1.15;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 150%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.benefits-note {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: rgba(211, 211, 211, 0.692);
  padding-left: 12px;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 1100vw;
  height: 300px;
  max-height: 300px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.carousel-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

}

@media (max-width: 768px) {
  .tour-benefits {
    flex-direction: column;
  }

  
}

