/* About Section Styles */
.about {
  position: relative;
  padding-top: 2.625rem; /* 42px */
  min-height: 52.625rem; /* 842px */
}

.about .container {
  position: relative;
  width: 100%;
}

/* Background Blur Effect */
.about-blur-bg {
  position: absolute;
  width: 21.1675rem; /* 338.68px */
  height: 13.555625rem; /* 216.89px */
  left: 5.375rem; /* 86px */
  top: 0;
  background: var(--enaya-gradient);
  mix-blend-mode: normal;
  opacity: 0.2;
  filter: blur(3.375rem); /* 54px */
  transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -1;
  pointer-events: none;
}

/* Left Image */
.about-image-left-wrapper {
  position: relative;
  border-radius: 1.25rem; /* 20px */
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 630/673;
}

.about-image-left-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Content */
.about-content-wrapper {
  position: relative;
  margin-top: 2.375rem; /* 38px */
}

/* Eyebrow: About Enaya */
.about-eyebrow {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1rem; /* 16px */
  line-height: 1rem; /* 16px */
  letter-spacing: 0.4375rem; /* 7px */
  text-transform: uppercase;

  background: var(--enaya-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.about-eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(100% + 0.5625rem); /* 9px */
  width: 55.43%;
  height: 2px;
  background: var(--enaya-gradient);
}

.about-description p {
  margin-top: 0;
  margin-bottom: 1.875rem; /* 30px */
}

/* Main Heading */
.about-heading {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 2.8125rem; /* 45px */
  line-height: 2.75rem; /* 44px */
  letter-spacing: -0.0625rem; /* -1px */
  color: var(--enaya-black);
  margin-bottom: 1.875rem; /* 30px */
}

/* Bottom Right Image */
.about-image-right-wrapper {
  position: absolute;
  right: var(--enaya-container-padding);
  bottom: -9.8775rem; /* -158.04px */
  border-radius: 1.25rem; /* 20px */
  overflow: hidden;
  z-index: -1;
}

.about-image-right-wrapper img {
  width: 39.375rem;
  height: 21.666rem;
  object-fit: cover;
}

/* Sticky Action Bar */
.sticky-action-bar-wrapper {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(200%);
  z-index: 1000;
  width: 100%;
  max-width: 59.94rem; /* 959px */
  display: flex;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none; /* Allow clicking through when hidden/animating */
}

.sticky-action-bar-wrapper.is-sticky-visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.sticky-action-bar {
  background: #000000;
  border-radius: 1.37rem; /* 21.94px */
  height: 5.57rem; /* 89.16px */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem; /* 10px */
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  padding-right: 0.858rem;
  padding-left: 0.858rem;
}

.sticky-btn {
  background: #ffffff;
  border-radius: 0.87rem; /* 13.94px */
  height: 3.875rem; /* 62px */
  display: flex;
  align-items: center;
  padding: 0 1.594rem;
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease;
  position: relative;
}

.sticky-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.538rem;
}

.sticky-btn-icon svg {
  width: 25px;
  height: 25px;
}

.sticky-btn-icon svg path {
  transition: fill 0.3s ease;
}

.sticky-btn-text {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  line-height: 1;
  letter-spacing: -0.04rem;
  flex-grow: 1;
  white-space: nowrap;
}

.sticky-btn-arrow {
  display: flex;
  align-items: center;
  margin-left: 1.081rem;
}

.sticky-btn-arrow svg path {
  transition: all 0.3s ease;
  fill: white;
}
.sticky-btn-arrow svg circle {
  fill: black;
}
/* Hover Effects */
.sticky-btn:hover {
  background: var(--enaya-gradient);
  color: #ffffff;
}

.sticky-btn:hover .sticky-btn-arrow svg circle {
  fill: white;
}
.sticky-btn:hover .sticky-btn-arrow svg path {
  fill: black;
}
.sticky-btn:hover .sticky-btn-icon svg path {
  fill: white;
}

/* Arrow Icon Handling (assuming btn-arrow-icon.svg is used) */
.sticky-btn:hover .sticky-btn-arrow .btn-arrow-icon path {
  stroke: #ffffff;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-description {
    font-size: 1.575rem;
  }
  .about-description p {
    font-size: 1.575rem;
  }
  .about-heading {
    font-size: 2.5rem;
  }
  .about-image-left-wrapper {
    aspect-ratio: 1000 / 500;
  }
  .about-image-right-wrapper {
    display: none;
  }
}

/* Small mobile devices (≤ 529px) */
@media (max-width: 529px) {
  .about {
    padding-top: 1.521875rem; /* 24.35px */
  }

  .about-description,
  .about-cta-wrapper {
    padding-left: 0;
  }

  .about-image-right-wrapper {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1.875rem; /* 30px */
    width: 100%;
    height: auto;
  }

  .sticky-action-bar-wrapper.is-sticky-visible {
    position: fixed;
    top: auto;
    left: auto;
    transform: none;
    margin-top: -2rem; /* Pull up slightly */
    padding: 0 1rem;
  }

  .sticky-action-bar {
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 1rem;
  }

  .sticky-btn {
    width: 100%;
  }
}
