@charset "utf-8";

/* Main Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  height: unset;
  transform: translateY(-100%);
  opacity: 0;
}

.sec-padding {
  padding-block: var(--space-60) var(--space-60);
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 100vh;
}

.hero-bg-slides {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-bg-slide {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bg-slide.active {
  opacity: 1;
}

.mv-inner {
  max-width: 42rem;
}

.take-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
}

html[lang="en-US"] .take-wrap {
  align-items: center;
}

.take-logo-img {
  display: inline-block;
  width: auto;
  height: 3.5rem;
  object-fit: contain;
}

/* Smooth hardware acceleration for text animation */
.hero-title-main,
.take-logo-img,
.hero-title-sub,
.hero-desc {
  will-change: transform, opacity, filter;
}

.hero-title-main {
  line-height: 1.25;
  color: var(--color-bg-dark);
  text-shadow:
    -1px -1px 0 var(--clr-neutral-100),
    1px -1px 0 var(--clr-neutral-100),
    -1px 1px 0 var(--clr-neutral-100),
    1px 1px 0 var(--clr-neutral-100);
}

html[lang="en-US"] .hero-title-main {
  font-size: 2.75rem;
}

.hero-title-sub {
  line-height: 1.1;
  margin-bottom: 0.35rem;
  color: var(--clr-tertiary);
}

html[lang="en-US"] .hero-title-sub {
  margin-bottom: 0;
  font-size: 3.375rem;
}

.hero-desc {
  line-height: 1.8;
  color: var(--clr-text-default);
  text-shadow:
    -1px -1px 0 var(--clr-neutral-100),
    1px -1px 0 var(--clr-neutral-100),
    -1px 1px 0 var(--clr-neutral-100),
    1px 1px 0 var(--clr-neutral-100);
}

.status-num {
  width: 1.875rem;
  height: 1.875rem;
  border: 1px solid var(--clr-primary);
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
  user-select: none;
}

.status-num:hover {
  transform: translateY(-2px);
  color: var(--clr-neutral-100);
  background-color: var(--clr-primary);
}

.status-num.active {
  color: var(--clr-neutral-100);
  background-color: var(--clr-primary);
}

.hero-bg-slide picture,
.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.dots-wrap {
  right: 0;
  bottom: 1.25rem;
  left: 0;
}

.dots {
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06) inset;
  background: var(--clr-gray-100);
}

.dots.active {
  color: var(--clr-neutral-100);
  background-color: var(--clr-primary);
}

/* Process Section */
.process-section .process-card {
  box-shadow: 0 0 4px 0 var(--clr-blue-border-100);
}

.timeline .timeline-item {
  position: relative;
  gap: 2.75rem;
}

@keyframes lineWaterFlow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 0% -200%;
  }
}

.timeline-item::before {
  position: absolute;
  top: 1.375rem;
  bottom: -3.5rem;
  left: 1.375rem;
  width: 0.125rem;
  background: linear-gradient(180deg, var(--clr-primary) 0%, #00d4ff 50%, rgba(0, 98, 184, 0.2) 100%);
  content: '';
  z-index: 1;
  background-size: 100% 200%;
  animation: lineWaterFlow 3s linear infinite;
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-item .step-number {
  position: relative;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  line-height: 1;
  border: 3px solid #eef7ff;
  box-shadow: 0 4px 14px rgba(0, 98, 184, 0.35);
  background: linear-gradient(135deg, var(--clr-primary) 0%, #0099ff 100%);
  font-family: var(--font-secondary);
  font-size: 1rem;
  z-index: 2;
  flex-shrink: 0;
}

.process-content .process-img-group {
  width: 25rem;
  max-width: 45%;
  align-self: center;
  flex-shrink: 0;
}

.process-img-card .process-img {
  display: block;
  width: 100%;
  height: 11.25rem;
  object-fit: cover;
}

.process-img-label {
  bottom: var(--space-10);
  left: var(--space-10);
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.90);
  color: var(--clr-primary);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Testimonial Section */
.testimonials-grid .testimonial-card {
  padding: 2.5rem;
  box-shadow: 0 0 4px #2f8ddC;
  background-color: var(--clr-blue-100);
}

.user-category-tag {
  border: 1px solid var(--clr-blue-border-100);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.testimonial-card .quote-icon {
  top: 1.25rem;
  right: 1.25rem;
  line-height: 1;
  opacity: 0.25;
  pointer-events: none;
}

.quote-icon svg {
  width: 1.875rem;
  height: 1.6875rem;
}

.testimonial-card .review-text {
  border-bottom: 1px solid rgba(47, 141, 220, 0.25);
  flex-grow: 1;
  font-style: italic;
}

.user-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.user-avatar.initial-avatar {
  width: 3.125rem;
  height: 3.125rem;
  border: 2px solid var(--clr-neutral-100);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.25);
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  letter-spacing: 0.5px;
}

.verified-badge {
  right: -2px;
  bottom: -2px;
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid var(--clr-neutral-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-size: 0.625rem;
  font-weight: bold;
}

.user-details .user-location {
  line-height: 1.8;
}

.user-location .icon-user-location {
  width: 0.5rem;
  height: 0.75rem;
  margin-bottom: 0.125rem;
}

.news-wave {
  width: 100%;
  height: 5rem;
  line-height: 0;
  pointer-events: none;
}

.news-wave.wave-top {
  margin-bottom: -1px;
}

.news-wave.wave-bottom {
  margin-top: -1px;
}

.news-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* FAQ Section */
.faq-section .faq-container {
  --max-width: 56.25rem;
}

.faq-container .accordion-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

.accordion-list .faq-item {
  border: 1px solid #e2e8f0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-list .faq-item.active {
  box-shadow: 0 0 4px var(--clr-blue-border-100);
}

.faq-item .faq-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: none;
  background: none;
}

.faq-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-header-left .faq-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background-color: #ebf4fe;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.faq-header-left .faq-icon-wrapper .icon-water-drop {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--clr-primary);
  transition: color 0.3s ease;
}

.faq-item.active .faq-icon-wrapper {
  background-color: var(--clr-primary);
}

.faq-item.active .faq-icon-wrapper .icon-water-drop {
  color: var(--clr-neutral-100);
}

.faq-header .faq-title {
  line-height: 1.5;
  color: var(--clr-neutral-900);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.faq-header .faq-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  transform: rotate(180deg);
  color: var(--clr-gray-100);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.faq-header .faq-arrow .icon-faq-arrow {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
}

.faq-item.active .faq-arrow {
  transform: rotate(0deg);
  color: var(--clr-primary);
}

.faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr;
}

.faq-content .faq-content-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 1.5rem 0 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease, padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content .faq-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  opacity: 1;
}

.faq-content p {
  line-height: 1.7;
  margin: 0;
  color: var(--clr-text-default);
}

/* Feature Item Water Drops */
.feature-item .icon-water-drop {
  width: 1.5625rem;
  height: 1.5625rem;
  color: var(--clr-cyan);
}

/* 5 Stars Rating Pop & Gold Glow Animation */
.stars .icon-rating-star,
.stars svg {
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
}

.sec-health {
  padding-block: 7.5rem 3.75rem;
}

.sec-health .sec-wrap {
  --padding: 11.25rem;
}

.health-card {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 6.25rem 2.5rem 6.25rem 6.25rem;
  border-radius: 20px;
  background: linear-gradient(to bottom, #C0EDFF 0%, #F4FCFF 25%, #FFFFFF 50%, #F4FCFF 75%, #C0EDFF 100%);
}

.health-img-container {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: -5rem;
  max-width: 25rem;
  pointer-events: none;
}

.health-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.health-content-col {
  width: 73%;
}

.health-title {
  margin-bottom: 1.25rem;
  color: var(--clr-tertiary);
  font-size: 2.1875rem;
}

.health-desc {
  margin-bottom: 1.25rem;
  color: var(--clr-text-default);
}

.health-list {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, auto);
  gap: 1.25rem;
}

.health-list-item {
  display: flex;
  align-items: flex-start;
  color: var(--clr-primary);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 700;
  gap: 0.625rem;
}

.health-list-item svg {
  width: .9375rem;
  height: .9375rem;
  flex-shrink: 0;
}

/* Helper class to disable transitions while GSAP is animating to prevent stuttering */
.single-card.gsap-animating,
.process-img-card.gsap-animating,
.testimonial-card.gsap-animating {
  transition: none !important;
}

@media (max-width: 84.375rem) {
  .sec-health .sec-wrap {
    --padding: 7.5rem;
  }

  .health-card {
    padding: 3.125rem 3.125rem 3.125rem 0 ;
  }

  .health-img-container {
    left: -3rem;
    max-width: 20rem;
  }

  .health-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 75em) {
  .hero-bg-slide img,
  .hero-bg-slide picture {
    object-position: 80% center;
  }

  .health-card {
    padding: 2rem 2rem 2rem 0rem;
  }

  .health-img-container {
    max-width: 21.875rem;
  }

  .health-content-col {
    width: 65%;
  }
}

@media (max-width: 64em) {

  .hero-bg-slides::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
    background-color: rgba(254, 254, 254, 0.7);
    pointer-events: none;
  }

  .hero-bg-slide img,
  .hero-bg-slide picture {
    position: relative;
    z-index: 0;
  }

  .process-card {
    padding: 2.5rem 2rem;
  }

  .process-content {
    flex-direction: column;
    gap: 2.5rem;
  }

  .process-content .timeline {
    width: 100%;
  }

  .process-content .process-img-group {
    width: 100%;
    max-width: 100%;
    align-self: center;
  }

  .process-img-card .process-img {
    height: 15.625rem;
  }
}

@media (max-width: 62.5em) {
  .sec-health {
    padding-block: 2.5rem;
  }

  .health-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .health-content-col {
    width: 60%;
  }

  .health-img-container {
    max-width: 18.75rem;
  }

  .health-title {
    font-size: 1.5625rem;
  }

  .cards-container {
    flex-direction: column;
  }

  .card-wrapper .arrow-connector {
    display: none;
  }
}

@media (max-width: 48em) {
  .mv-inner {
    max-width: 25rem;
  }

  .hero-bg-slide img {
    object-position: 80% center;
  }

  .hero-title-main {
    font-size: 1.6875rem;
  }

  .take-logo-img {
    height: 2.5rem;
  }

  .hero-title-sub {
    margin-bottom: .25rem;
    font-size: 1.25rem;
  }

  .process-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .process-content .process-img-group {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }

  .timeline {
    gap: 1.25rem;
  }

  .timeline .timeline-item {
    gap: 1.5rem;
  }

  .timeline-item::before {
    bottom: -2.25rem;
  }

  .process-card {
    padding: 2rem 1.25rem;
  }

  .sec-health .sec-wrap {
    --padding: 2.5rem;
  }

  .health-content-col {
    width: 100%;
    z-index: 1;
  }

  .health-title {
    font-size: var(--fs-20);
  }

  .health-desc {
    text-shadow:
      -1px -1px 0 var(--clr-neutral-100),
      1px -1px 0 var(--clr-neutral-100),
      -1px 1px 0 var(--clr-neutral-100),
      1px 1px 0 var(--clr-neutral-100);
  }

  .health-card {
    padding: 2rem;
  }

  .health-img-container {
    right: 0;
    left: unset;
    max-width: 15.625rem;
  }

  .health-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    content: "";
    z-index: 1;
    background-color: rgba(254, 254, 254, 0.5);
    pointer-events: none;
  }

  .testimonials-container .cmn-ttl .rating {
    flex-direction: column-reverse;
  }

  .cmn-ttl .rating span:nth-of-type(2) {
    display: none;
  }

  .news-wave {
    height: 1.875rem;
  }
}

@media (max-width: 40em) {
  .hero-bg-slide img {
    object-position: 85% center;
  }
}