.home {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  background-color: #ffffff;
}

/* Background img */
.home__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.03;
}

/* Content block */
.home__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* eyebrow */
.home__eyebrow {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  color: var(--color-dark-blue);
  margin-bottom: 0.75rem;
}

/* title*/
.home__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  color: var(--color-dark-blue);
  max-width: 110%;
  margin-bottom: 1.25rem;
}

.home__title--blue {
  color: var(--color-light-blue);
}

/* Description w the wavy images */
.home__desc-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.home__wavy {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

/* Description text */
.home__desc {
 font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.2;
  color: #767676;
  max-width: 700px;
  text-align: center;
}

/* action buttons*/
.home__cta-row {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 1rem;
  margin-top: -1rem;
}

.home__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.home__cta-btn:hover {
  opacity: 0.85;
}

.home__cta-btn--text {
  background-color: var(--color-dark-blue);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  height: 40px;
}

/* action icon button */
.home__cta-btn--icon {
  background-color: var(--color-dark-blue);
  color: #ffffff;
  width:50px;
  height: 40px;
border-radius: 999px;

}

.home__cta-btn--icon i {
  width: 20px;
  height: 20px;
}

/* Gallery */
.home__gallery {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  padding: 0 2rem 0;
  max-width: 1300px;
  margin: 0 auto;
}

.home__gallery-left,
.home__gallery-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  max-width: 320px;
}

.home__gallery-center {
  flex: 1.8;
  max-width: 660px;
}

.home__gallery-item {
  border-radius: 1.25rem;
  overflow: hidden;
  width: 100%;
}

.home__gallery-center .home__gallery-item {
  height: 100%;
}

.home__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home__gallery-center .home__gallery-item img {
  object-position: center top;
  transform: scale(1);
  transform-origin: center top;
}

.home__gallery-left .home__gallery-item,
.home__gallery-right .home__gallery-item {
  flex: 1;
}

/* Zoom in animation */
.anim-zoom {
  transform: scale(0.4);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.7s ease;
}

.anim-zoom.is-visible {
  transform: scale(1);
  opacity: 1;
}

/* Floating side buttons */
.home__floats {
  position: absolute;
  right: 0;
  top: 75%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home__float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px 0 0 999px;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.home__float:hover {
  opacity: 0.85;
}

.home__float i,
.home__float img {
  width: 28px;
  height: 28px;
}

.home__float--whatsapp {
  background-color: #02bf32;
}

.home__float--phone {
  background-color: var(--color-dark-blue);
}

/* Responsive */
@media (max-width: 768px) {
  .home__gallery {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .home__gallery-left,
  .home__gallery-right {
    flex-direction: row;
    max-width: 100%;
    width: 100%;
  }

  .home__gallery-center {
    max-width: 100%;
    width: 100%;
  }

  .home__gallery-center .home__gallery-item {
    height: 340px;
  }

  .home__desc-row {
    gap: 0.75rem;
  }

  .home__wavy {
    width: 24px;
  }
}

@media (max-width: 480px) {
  .home__gallery-left,
  .home__gallery-right {
    flex-direction: column;
  }

  .home__title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }
}
