/* ==================
         sec 1 
   ==================*/

.contact-us-sec-1 {
  position: relative;
  width: 100%;
/*   min-height: 550px; */
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 136px 20px;

  /* BACKGROUND */
  background: #0b0b0b url("../images/sec-3-bg.webp") center/cover no-repeat;
  background-size: cover;

  overflow: hidden;
}

/* CONTENT */
.contact-us-sec-1-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1420px;
  width: 100%;
}

/* TITLE */
.contact-us-sec-1-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

/* BREADCRUMB */
.contact-us-sec-1-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-size: clamp(14px, 1.2vw, 16px);
  color: #aaa;
}

.contact-us-sec-1-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-us-sec-1-breadcrumb a:hover {
  color: #8fff9c;
}

.contact-us-sec-1-breadcrumb span {
  color: #ffffff;
}





/* ==================
         sec 2 
   ==================*/
.contact-sec-2 {
  padding: 130px 20px 170px 20px;
  background: #f3f5f4;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  position: relative;
}

.contact-sec-2-container {
  max-width: 1420px;
  width: 90%;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT */
.contact-sec-2-left {
  position: sticky;
  top: 0;
}

.contact-sec-2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin: 0 0 14px;
}

.contact-sec-2-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #111;
  position: relative;
  flex: 0 0 auto;
}

.contact-sec-2-kicker-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
}

.contact-sec-2-kicker-dot:first-child::after {
  left: 2px;
}

.contact-sec-2-kicker-dot:last-child::after {
  right: 2px;
}

.contact-sec-2-title {
  font-size: clamp(32px, 4vw, 48px);
  margin: 10px 0;
  font-weight: 600;
  letter-spacing: 0.9px;
}

.contact-sec-2-desc {
  color: #777;
  max-width: 480px;
  margin-bottom: 40px;
}

/* INFO GRID */
.contact-sec-2-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-sec-2-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-sec-2-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #003D2B, #6fdc8c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 12px solid #fff;
}

.contact-sec-2-icon svg {
  width: 24px;
  height: 24px;
}

.contact-sec-2-item h4 {
  margin: 0 0 6px;
}

.contact-sec-2-item p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

.contact-sec-2-link-underline a {
  text-decoration: none;
  color: #777;
  position: relative;
  display: inline-block;
  margin-bottom: 4px;
  overflow: hidden;
}

.contact-sec-2-link-underline a::before {
  content: "";
  position: absolute;
  background-color: #000;
  height: 1px;
  width: 100%;
  transform: translateX(-110%);
  z-index: 0;
  bottom: 0;
  transition: transform 0.4s ease;
}

.contact-sec-2-link-underline a::after {
  content: "";
  position: absolute;
  background-color: #000;
  height: 1px;
  width: 100%;
  transform: translateX(10%);
  z-index: 0;
  bottom: 0;
  transition: transform 0.4s ease;
}

.contact-sec-2-link-underline a:hover::before {
  transform: translateX(-50%);
}

.contact-sec-2-link-underline a:hover::after {
  transform: translateX(-50%);
}

/* FORM */
.contact-sec-2-form {
  background: #ffffff;
  padding: 60px;
  border-radius: 24px;
}

.contact-sec-2-form h3 {
  margin-bottom: 40px;
  font-size: 24px;
}

/* GRID */
.contact-sec-2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;

  margin-bottom: 20px;
}

.contact-sec-2-form input,
.contact-sec-2-form select,
.contact-sec-2-form textarea {
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #f3f5f4;
  outline: none;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact-sec-2-form textarea {
  height: 120px;
  resize: none;
  margin-bottom: 40px;
}

.contact-sec-2-form .field-box{
	position: relative;
    padding-bottom: 23px;
}

.contact-sec-2-form .field-box .error-msg{
	position: absolute;
    bottom: 4px;
    left: 4px;
    font-size: 12px;
    color: #ff1414;
}

.contact-sec-2-form input:focus-within,
.contact-sec-2-form select:focus-within,
.contact-sec-2-form textarea:focus-within {
  border-color: #6fdc8c;
}

.contact-sec-2-form input::placeholder,
.contact-sec-2-form select::placeholder,
.contact-sec-2-form textarea::placeholder {
  color: #b8b8b8;
}

/* BUTTON */
.contact-sec-2-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 14px 26px;
  border-radius: 14px;
  max-width: 250px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  user-select: none;

  background-color: #c8f5a8;

  transition: all 0.4s ease;
}

.contact-sec-2-btn::before {
  content: "";
  background: linear-gradient(88deg, transparent, #003D2B, transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.4s ease;
}

/* TEXT */
.contact-sec-2-btn-text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 4;
}

/* ICON WRAPPER */
.contact-sec-2-btn-icon {
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.contact-sec-2-btn-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.contact-sec-2-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.contact-sec-2-btn:hover::before {
  transform: translateX(50%);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 992px) {
  .contact-sec-2-container {
    grid-template-columns: 1fr;
  }

  .contact-sec-2-form {
    padding: 30px;
  }

  .contact-sec-2-left {
    position: static;
  }
}

@media (max-width: 600px) {
  .contact-sec-2-info {
    grid-template-columns: 1fr;
  }

  .contact-sec-2-grid {
    grid-template-columns: 1fr;
  }

  .contact-sec-2 {
    padding: 60px 20px 80px 20px;
    border-radius: 30px 30px 0 0;
  }
}






/* ==================
         sec 3 
   ==================*/

.contact-sec-3 {
  padding: 130px 20px 40px 20px;
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  position: relative;
}

.contact-sec-3-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-sec-3-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin: 0 0 14px;
}

.contact-sec-3-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #111;
  position: relative;
  flex: 0 0 auto;
}

.contact-sec-3-kicker-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
}

.contact-sec-3-kicker-dot:first-child::after {
  left: 2px;
}

.contact-sec-3-kicker-dot:last-child::after {
  right: 2px;
}

.contact-sec-3-title {
  font-size: clamp(2.25rem, 2.0549rem + 0.8917vw, 3.125rem);
}

/* LAYOUT */
.contact-sec-3-container {
  max-width: 1420px;
  width: 90%;
  margin: auto;
}

.contact-sec-3-grid {
  margin: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

/* LEFT */
.contact-sec-3-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-sec-3-item {
  padding: 16px 20px;
  background: #e4e4e4;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.6s ease;
}

.contact-sec-3-item img {
  width: auto;
  height: 32px;
}

.contact-sec-3-item.active,
.contact-sec-3-item:hover {
  background: linear-gradient(90deg, #6ddf8a, #b6e388);
}

/* MAP */
.contact-sec-3-map {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
}

.contact-sec-3-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%);
}

/* CARD */
.contact-sec-3-card {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  background: linear-gradient(0deg, #00000059, #00000040);
  backdrop-filter: blur(23px);
  padding: 30px;
  border-radius: 12px;
  width: 350px;
}

.contact-sec-3-card-sm {
  background: linear-gradient(0deg, #00000059, #00000040);
  backdrop-filter: blur(23px);
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  display: none;

  margin-top: 12px;
}

.contact-sec-3-card h3,
.contact-sec-3-card-sm h3 {
  font-size: 26px;
  color: #fff;
  margin: 0 0 20px;
}

.contact-sec-3-card p,
.contact-sec-3-card-sm p {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.contact-sec-3-card img,
.contact-sec-3-card-sm img {
  width: 16px;
  height: 16px;
}

.contact-sec-3-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 14px 26px;
  border-radius: 14px;
  max-width: 250px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  user-select: none;

  background-color: #c8f5a8;

  transition: all 0.4s ease;
}

.contact-sec-3-btn::before {
  content: "";
  background: linear-gradient(88deg, transparent, #6fdc8c, transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.4s ease;
}

/* TEXT */
.contact-sec-3-btn-text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 4;
}

/* ICON WRAPPER */
.contact-sec-3-btn-icon {
  width: 16px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.contact-sec-3-btn-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.contact-sec-3-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.contact-sec-3-btn:hover::before {
  transform: translateX(50%);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-sec-3-grid {
    grid-template-columns: 1fr;
  }

  .contact-sec-3-left {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .contact-sec-3-item {
    width: 100%;
  }

  .contact-sec-3-card {
    width: auto;
  }

  .contact-sec-3-card {
    display: none;
  }

  .contact-sec-3-card-sm {
    display: block;
  }

  .contact-sec-3 {
    padding: 60px 20px 20px 20px;
    border-radius: 30px 30px 0 0;
  }
}





/* ==================
         sec 4 
   ==================*/



.contact-sec-4 {
  padding: 80px 20px;
  background: #ffffff;
  overflow: hidden;
}

.contact-sec-4-container {
  max-width: 1420px;
  width: 90%;
  margin: auto;
}

/* HEADER */
.contact-sec-4-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-sec-4-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin: 0 0 14px;
}

.contact-sec-4-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #111;
  position: relative;
  flex: 0 0 auto;
}

.contact-sec-4-kicker-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
}

.contact-sec-4-kicker-dot:first-child::after {
  left: 2px;
}

.contact-sec-4-kicker-dot:last-child::after {
  right: 2px;
}
.contact-sec-4-title {
  font-size: clamp(2.25rem, 2.0549rem + 0.8917vw, 3.125rem);
  font-weight: 600;
  letter-spacing: 1px;
}

/* MARQUEE */
.contact-sec-4-marquee-container {
  position: relative;
}

.contact-sec-4-marquee-container::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff, transparent);
  z-index: 2;
}

.contact-sec-4-marquee-container::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(270deg, #ffffff, transparent);
  z-index: 2;
}

.contact-sec-4-marquee {
  overflow: hidden;
  position: relative;
  padding: 24px 0px;
}

/* TRACK */
.contact-sec-4-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

/* REVERSE */
.contact-sec-4-reverse .contact-sec-4-track {
  animation: scroll-right 35s linear infinite;
}

/* CARDS */
.contact-sec-4-card {
  min-width: 220px;
  height: 120px;

  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: 600;
  border: 1px solid #eee;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
}

.contact-sec-4-card div {
  position: relative;
  z-index: 5;
}

.contact-sec-4-card div img {
  width: 150px;
  height: auto;
}

.contact-sec-4-card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #6ddf8a, #b6e388);
  z-index: 1;
  transform: translateX(-120%);
  opacity: 0;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.contact-sec-4-card::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffffd3;
  z-index: 10;
  transform: translateX(0%);

  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.contact-sec-4-card:hover::before {
  transform: translateX(0%);
  opacity: 1;
}

.contact-sec-4-card:hover::after {
  transform: translateX(-120%);
}

/* ANIMATION */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* PAUSE ON HOVER */
.contact-sec-4-marquee:hover .contact-sec-4-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-sec-4-title {
    font-size: 28px;
  }

  .contact-sec-4-card {
    min-width: 200px;
    height: 100px;
    font-size: 14px;
  }

  .contact-sec-4-track {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .contact-sec-4-card {
    min-width: 200px;
    height: 100px;
    font-size: 12px;
  }

  .contact-sec-4-marquee {
    padding-bottom: 12px;
  }

  .contact-sec-4-header {
    margin-bottom: 20px;
  }
}
