@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");
@import url("annual-report.css");
@import url("esg.css");
@import url("what-we-do.css");
@import url("single-service.css");
@import url("about.css");
@import url("portfolio.css");
@import url("404.css");
@import url("blog.css");
@import url("single.css");
@import url("contact.css");
:root {
  --red-alivea: #ffadad;
  --brown-alivea: #fdd6a5;
  --teal-alivea: #e4f1ee;
  --yellow-alivea: #fdffb6;
  --blue-alivea: #d9edf8;
  --white-alivea: #fafafa;
  --danger-alivea: #99472b;
  --black-alivea: #383435;
  --pink-alivea: #ffcae5;
  --wa-green: #25D366;
  --wa-green-dark: #1ebe5d;
  --shadow: 0 14px 35px rgba(0,0,0,.22);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--black-alivea);
}

body {
  font-family: "Bricolage Grotesque", sans-serif;
  transition: all 0.3s ease;
  user-select: none;
}
.flip-x {
  transform: scaleX(-1);
}
.bg-pink {
  background-color: var(--pink-alivea);
}
.bg-red {
  background-color: var(--red-alivea);
}
.bg-teal {
  background-color: var(--teal-alivea);
}
.bg-blue {
  background-color: var(--blue-alivea);
}
.bg-yellow {
  background-color: var(--yellow-alivea);
}
.bg-brown {
  background-color: var(--brown-alivea);
}
.color-danger {
  color: #99472b;
}
.announcement {
  width: 100%;
  padding: 13px 0;
  background-color: var(--red-alivea);
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement p {
  font-family: Bricolage Grotesque;
  font-weight: 500;
  font-size: 14px;
  line-height: 19.6px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--black-alivea);
}
.announcement p a {
  color: var(--black-alivea);
}

.nav-left ul {
  list-style: none;
  padding: 0;
}

.nav-left ul {
  display: flex;
  gap: 26px;
  margin: 0;
}
.nav-left ul li a {
  font-weight: 500;
  font-size: 15px;
  line-height: 14px;
  letter-spacing: 0%;
  color: #12594d;
  text-decoration: none;
}
.nav-left ul li a:hover,
.nav-left ul li a.active,
.nav-left ul li.current-menu-item > a,
.nav-left ul li.current_page_item > a {
  color: var(--red-alivea);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav {
  height: 80px;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px #0000001a;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #383435;
}

.hamburger {
  width: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  z-index: 999;
}

.mobile-menu-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.is-active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

.mobile-menu ul li {
  margin: 30px 0;
  opacity: 0;
  transform: translateX(30px);
}

.mobile-menu.is-active ul li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu ul li a {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.5;
  color: #12594d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active,
.mobile-menu ul li.current-menu-item > a,
.mobile-menu ul li.current_page_item > a {
  color: var(--red-alivea);
}
.hero__title {
  font-weight: 800;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -1px;
  text-align: center;
}

section.hero {
  padding: 35px 0;
}
.arrow-down {
  margin: 15px auto;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
}

.wrapper-button-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
}
.btn-alivea {
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  text-align: center;
  color: var(--black-alivea);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.btn-alivea svg {
  width: 24px;
  height: 17px;
  flex-shrink: 0;
  overflow: visible;
  transition: margin-left 0.3s ease;
}
.btn-alivea .arrow-line {
  transition: transform 0.3s ease;
  transform-origin: right center;
}
.btn-alivea:hover {
  box-shadow: 10px 10px 0px 0px var(--black-alivea);
  transform: translate(-5px, -5px);
}
.btn-alivea:hover svg {
  margin-left: 10px;
}
.btn-alivea:hover .arrow-line {
  transform: scaleX(1.5);
}
.btn__primary {
  background-color: #fdffb6;
  border: 1px dashed #ffadad;
  border-radius: 50px;
  padding: 12px 20px;
  transition: all 0.2s ease;
}
.btn__secondary {
  border: 1px solid #383435;
  padding: 12px 20px;
  border-radius: 50px;
  transition: all 0.2s ease;
}
p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: -0.2px;
  color: var(--black-alivea);
}
.homepage-warning {
  margin-left: auto;
  margin-right: auto;
}
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}
.content-warning {
  padding: 20px;
  border: 2px solid #ffadad;
  background-color: #fff;
  box-shadow: 20px 20px 0px 0px var(--black-alivea);
  border-radius: 6px;
  transform: rotate(7.32deg);
  max-width: 300px;
  margin: 30px 0 60px 20px;
}

.container-warning h3 {
  font-family: Bricolage Grotesque;
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -1px;
  text-align: right;
}
a:hover,
a:focus,
a:active {
  outline: none;
  box-shadow: none;
}
.btn__primary:hover {
  box-shadow: 10px 10px 0px 0px var(--black-alivea);
  margin: -10px 10px 10px 0;
}
.btn__secondary:hover {
  box-shadow: 10px 10px 0px 0px var(--black-alivea);
  margin: -7px 10px 10px 0;
  background-color: var(--red-alivea);
}
.logo-slider {
  width: 100%;
  padding: 16px 0 14px 0;
  background-color: var(--teal-alivea);
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-slider-track {
  display: flex;
  gap: 50px;
  width: max-content;
}

.logo-slider-track img {
  width: 88px;
  width: auto;
  object-fit: contain;
}
section.who-we-are {
  padding: 75px 0 55px 0;
}

.title__who-we-are {
  font-weight: 500;
  font-size: 36px;
  line-height: 22.4px;
  text-align: center;
  padding: 16px 20px;
  background-color: #fafafa;
  border: 1px solid #ffadad;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 20px 20px 0px 0px var(--black-alivea);
  transform: rotate(-5.81deg);
  margin: 0 auto 40px auto;
}
.title-vibe {
  font-family: Bricolage Grotesque;
  font-weight: 700;
  font-size: 52px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.item-vibe {
  padding: 42px 20px;
  text-align: center;
  background-color: #fafafa;
  border-radius: 6px;
  border: 1px solid #dedaf4;
  flex: 1;
  transition: all 0.3s ease-in-out;
}

.item-vibe:hover {
  background-color: #e4f1ee;
}

.content-vibe {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.item-vibe h3 {
  font-weight: 500;
  font-size: 21.31px;
  line-height: 22.4px;
  text-align: center;
  margin-bottom: 0;
  min-height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.item-vibe p {
  font-weight: 300;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: 0%;
  text-align: center;
  opacity: 0;
  height: 0;
  overflow: hidden;
  margin-top: 10px;
}
.item-vibe .icon-vibe svg {
  transition: transform 0.6s ease-in-out;
}

.branding-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 20px;
  padding-top: 50px;
  margin-bottom: 60px;
}

/* Stacking Cards Container */
.container-branding {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.item-branding {
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  transform-origin: center top;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Ensure pinned cards have solid background */
.item-branding.pin-spacer,
.pin-spacer .item-branding {
  background-color: #fff;
}

.item-branding__description h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 20px;
}

.item-tags {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.item-tags span {
  font-weight: 500;
  font-size: 17.58px;
  line-height: 22.4px;
  text-align: center;
  border: 1px solid #ffadad;
  border-radius: 30px;
  padding: 6px 10px;
}
.btn-branding {
  padding: 12px 18px;
  border-radius: 30px;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 20px;
  line-height: 22.4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-branding svg {
  width: 24px;
  height: 17px;
  flex-shrink: 0;
  overflow: visible;
  transition: margin-left 0.3s ease;
}
.btn-branding .arrow-line {
  transition: transform 0.3s ease;
  transform-origin: right center;
}
.btn-branding:hover svg {
  margin-left: 10px;
}
.btn-branding:hover .arrow-line {
  transform: scaleX(1.5);
}
.btn-branding:hover {
  box-shadow: 10px 10px 0px 0px var(--black-alivea);
  margin: -10px 10px 10px 0;
}
.item-branding__article {
  font-weight: 300;
  font-size: 16px;
  line-height: 22.4px;
  margin-bottom: 40px;
}
.item-branding__img {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
}
.item-branding__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.border-alivea-red {
  border: 1px dashed var(--red-alivea);
}
.border-alivea-brown {
  border: 1px dashed var(--brown-alivea);
}
.container-custom-project {
  background-color: var(--yellow-alivea);
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}
.container-custom-project h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 20px;
  color: var(--black-alivea);
}

.container-custom-project p {
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--black-alivea);
  line-height: 100%;
  letter-spacing: -1px;
}
.portfolio {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 24px;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.portfolio-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 204px;
  flex-shrink: 0;
  height: 100%;
}

.item-portfolio {
  border-radius: 12px;
  height: auto;
  overflow: hidden;
}
.item-portfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-image-4_3 {
  overflow: unset;
}
.portfolio-image-4_3 img {
  border-radius: 12px;
}
.portfolio-image-1_4,
.portfolio-image-2_3,
.portfolio-image-3_4,
.portfolio-image-4_3,
.portfolio-image-5_4,
.portfolio-image-6_3,
.portfolio-image-7_4 {
  flex-grow: 1;
}
.portfolio-image-1_4 {
  aspect-ratio: 204 / 137;
}

.portfolio-image-2_3 {
  aspect-ratio: 204 / 300;
}

.portfolio-image-3_4 {
  aspect-ratio: 204 / 137;
}

.portfolio-image-4_3 {
  aspect-ratio: 204 / 226;
  left: 50% !important;
  transform: translateX(-50%) !important;
  position: relative !important;
}

.portfolio-image-5_4 {
  aspect-ratio: 204 / 137;
}

.portfolio-image-6_3 {
  aspect-ratio: 204 / 300;
}

.portfolio-image-7_4 {
  aspect-ratio: 204 / 137;
}
.portfolio-btn {
  border: 1px dashed var(--red-alivea);
  padding: 12px;
  border-radius: 30px;
  background-color: var(--yellow-alivea);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.portfolio-section {
  margin-top: calc(106px - 1rem);
}
.portfolio-col-4 {
  position: relative;
  padding-bottom: 75px;
}
.container-portfolio-description {
  opacity: 0;
}
.portfolio-image-description {
  position: absolute;
  bottom: 90px;
  background-color: #fff;
  padding: 24px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -1px;
  box-shadow: 20px 20px 0px 0px var(--black-alivea);
  left: -174px;
  transform: rotate(-12.8deg);
  opacity: 0;
  transition: 0.3s;
  display: none;
  width: 300px;
}
.portfolio-image-description:hover {
  padding: 30px;
  transform-origin: top center;
}
.portfolio-description h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 20px;
}
.portfolio-description p {
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.portfolio-description {
  width: 100%;
  margin: -30px auto 0;
}
.brand-led-section {
  padding: 80px 0;
}

.item-brand-led {
  background-color: #fff;
  padding: 24px;
  border-radius: 18px;
}

.container-brand-led {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-led h2 {
  font-weight: 700;
  font-size: 52px;
  line-height: 65px;
  text-align: center;
  margin-bottom: 46px;
}

.item-brand-led h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-align: center;
  margin: 0 auto;
}
.item-brand-led__desc {
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 100%;
}

.item-brand-led:first-child h3 {
  color: #a29ad2;
}
.item-brand-led:nth-child(2) h3 {
  color: #d09f61;
}
.item-brand-led:nth-child(3) h3 {
  color: #e394bd;
}
.item-brand-led:nth-child(4) h3 {
  color: #8ec8bb;
}

.item-brand-led {
  display: flex;
  flex-direction: column;
  gap: 40px;
  cursor: auto;
  position: relative;
}

.item-brand-led h3,
.item-brand-led__desc {
  position: relative;
  z-index: 10;
}

.item-brand-led__img img {
  width: 100%;
}

/* Cursor following image */
.brand-led-cursor-image {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0) rotate(-15deg);
  transition: 0.3s;
}

.brand-led-cursor-image.active {
  opacity: 1;
}

.brand-led-cursor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.item-love-note {
  border-radius: 12px;
  background-color: #e4f1ee;
  border: 1px dashed #ffadad;
  padding: 25px 50px 125px 25px;
}
.love-notes-section {
  padding: 20px;
}
.title-love-notes {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 20px;
}

.subtitle-love-notes {
  font-weight: 300;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.title-item-love-notes {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 20px;
  color: #000000;
  text-align: left;
}

.item-love-note article p {
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
}

.item-love-note article {
  margin-bottom: 40px;
  text-align: left;
}

.love-notes__client__name {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}

.love-notes__client {
  text-align: left;
}

.love-notes__client__role {
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  margin: 0;
}
.alivea-nav-swiper {
  position: absolute;
  bottom: 40px;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.alivea-nav-button {
  padding: 12px 20px;
  background: #fdffb6;
  border-radius: 30px;
  cursor: pointer;
  border: 1px dashed #ffadad;
  transition: all 0.3s ease;
}
.alivea-nav-button:hover {
  box-shadow: 10px 10px 0px 0px var(--black-alivea);
  margin: -10px 10px 10px 0;
}
.alivea-nav-button.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.alivea-contact {
  margin-top: 16px;
  text-align: center;
  background-color: #fff;
  padding: 78px 20px;
  border: 1px dashed #ffadad;
  border-radius: 12px;
  position: relative;
}

.alivea-contact__intro h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  margin-bottom: 20px;
}

.alivea-contact__intro p {
  font-weight: 300;
  line-height: 100%;
  font-size: 16px;
  margin-bottom: 40px;
  color: #383435;
}

.alivea-contact__form label {
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  margin-bottom: 6px;
}
.alivea-contact__form input,
.alivea-contact__form textarea {
  width: 100%;
  padding: 12px 20px;
  border: 1px dashed #ffadad;
  border-radius: 30px;
}
.alivea-contact__form textarea {
  height: 220px;
  resize: none;
}
.alivea-contact__form input:focus,
.alivea-contact__form textarea:focus {
  outline: none;
  box-shadow: none;
}
.alivea-contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-home {
  background: #ffcae5;
  margin-top: -160px;
  padding-top: 200px;
}
.content-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-footer__logo {
  width: 204px;
  margin-bottom: 30px;
  flex-shrink: 0;
}

.content-footer__logo img {
  width: 100%;
}
.content-footer-middle {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.content-footer_nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 33px;
}

.content-footer_nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 14px;
  color: #383435;
}
.content-footer-middle {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}

.content-footer_nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 33px;
  list-style: none;
  padding: 0;
}

.content-footer_nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  line-height: 14px;
  color: #383435;
}

.content-footer__tagline {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  width: 225px;
}

.content-footer__right {
  background: #fff;
  padding: 21px;
  border-radius: 6px;
  box-shadow: 20px 20px 0px 0px var(--black-alivea);
  transform: rotate(-4.27deg);
  margin-bottom: 50px;
  margin-top: 20px;
  width: 290px;
  margin-left: auto;
  margin-right: auto;
}

.content-footer__right p {
  font-weight: 800;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: -1px;
  text-align: center;
  margin: 0;
}
.inner-page {
  padding-top: 40px;
}
.img-full {
  width: 100%;
  height: auto;
}
p:last-of-type {
  margin-bottom: 0;
}
input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}
.form-onboard .wpcf7-spinner,
.alivea-contact__form .wpcf7-spinner {
  display: none !important;
  visibility: hidden !important;
}
.title-section {
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
/* Floating button */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #38f07a, var(--wa-green));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  z-index: 9999;
  text-decoration: none;
  transform: translateZ(0);
  animation: wa-gloat 2.6s ease-in-out infinite;
  outline: none;
}

.wa-float:hover {
  background: radial-gradient(circle at 30% 30%, #46ff87, var(--wa-green-dark));
  transform: scale(1.06);
  animation-play-state: paused;
}

.wa-float:active {
  transform: scale(0.98);
}

/* Icon */
.wa-float img {
  width: 34px;
  height: 34px;
  fill: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}

/* Optional little “glow ring” pulse */
.wa-float::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 2px solid rgba(37,211,102,.45);
  transform: scale(.82);
  opacity: 0;
  animation: wa-ring 2.6s ease-in-out infinite;
  pointer-events: none;
}

/* Tooltip bubble (optional) */
.wa-tip {
  position: fixed;
  right: 92px;
  bottom: 30px;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font: 600 13px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  opacity: 0;
  transform: translateX(10px);
  transition: .2s ease;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
}

.wa-float:hover + .wa-tip {
  opacity: 1;
  transform: translateX(0);
}

.wa-tip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #111;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
}

/* “Gloating” motion: bob + tiny rotate + smug scale */
@keyframes wa-gloat {
  0%   { transform: translateY(0) scale(1) rotate(0deg); }
  18%  { transform: translateY(-6px) scale(1.04) rotate(-2deg); }
  36%  { transform: translateY(0) scale(1) rotate(0deg); }
  54%  { transform: translateY(-4px) scale(1.03) rotate(2deg); }
  72%  { transform: translateY(0) scale(1) rotate(0deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes wa-ring {
  0%   { opacity: 0; transform: scale(.82); }
  20%  { opacity: .9; }
  45%  { opacity: 0; transform: scale(1.18); }
  100% { opacity: 0; transform: scale(1.18); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .wa-float, .wa-float::before { animation: none !important; }
}
@media (min-width: 768px) {
  .title-section {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .love-notes-section {
    padding: 2rem;
  }
  .container-warning {
    position: relative;
  }
  .content-warning {
    margin: 40px auto 80px auto;
    max-width: 500px;
  }
  .container-warning h3 {
    font-size: 32px;
  }
  .hero__title {
    font-size: 64px;
    line-height: 100%;
  }

  .hero__title {
    font-size: 94px;
    line-height: 118.2px;
  }

  .love-alivea {
    position: absolute;
    left: 290px;
    top: 0;
  }

  p {
    font-weight: 400;
    font-size: 24px;
    line-height: 39.2px;
    letter-spacing: -0.2px;
  }
  .hero__title {
    font-size: 128px;
    line-height: 147.2px;
  }
}

@media (min-width: 992px) {
  .title-section {
    font-size: 52px;
  }
  .content-footer {
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: 34px;
    justify-content: center;
    width: 768px;
    margin: 0 auto;
  }

  .content-footer-middle {
    flex-direction: column;
    gap: 66px;
    margin-left: -40px;
  }

  .content-footer_nav {
    flex-direction: row;
    margin-bottom: 0;
  }
  .footer-home {
    margin-top: -250px;
    padding-top: 300px;
  }

  .content-footer__right {
    margin-left: -90px;
    margin-top: 0;
  }
  .icon-send {
    position: absolute;
    bottom: 38px;
    right: -30px;
  }
  .alivea-contact {
    margin-top: 113px;
    border-radius: 32px;
    padding: 72px 99px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
  }

  .alivea-contact__intro {
    flex: 1;
    text-align: left;
  }

  .alivea-contact__form {
    flex: 1.5;
  }

  .alivea-contact__form input,
  .alivea-contact__form textarea {
    background: #f3f3f3;
  }

  .btn-contact {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .alivea-contact__intro p {
    font-size: 24px;
    line-height: 100%;
    margin: 0;
  }
  .item-love-note:not(.swiper-slide-next) {
    opacity: 0.3;
  }
  .alivea-nav-swiper {
    bottom: 50%;
    justify-content: space-around;
    transform: translateY(50%);
  }

  .item-love-note {
    padding: 50px;
    border-radius: 60px;
  }
  .swiper-wrapper {
    align-items: stretch !important;
  }
  .alivea-home-swiper .swiper-slide {
    height: auto;
  }
  .love-notes-section {
    padding: 0;
    width: 150%;
    position: relative;
    left: -25%;
  }
  .subtitle-love-notes {
    margin-bottom: 40px;
  }
  .item-brand-led h3 {
    opacity: 0.5;
    transition: opacity 1s ease;
  }
  .item-brand-led__desc {
    line-height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .item-brand-led:hover h3,
  .item-brand-led:hover .item-brand-led__desc {
    opacity: 1;
  }
  .item-brand-led {
    flex-direction: row;
    align-items: center;
    padding: 72px;
    border-radius: 60px;
    gap: 150px;
  }

  .item-brand-led__img {
    display: none;
  }

  .item-brand-led h3 {
    width: 300px;
    text-align: left;
    flex-shrink: 0;
  }

  .item-brand-led__desc {
    text-align: right;
  }

  .portfolio-description p {
    font-size: 24px;
    letter-spacing: -1px;
  }
  .portfolio-description {
    width: 800px;
  }

  .arrow-down {
    margin: 15px 0;
  }
  .portfolio-col {
    width: calc(14.2857% - 24px);
  }
  .item-branding__img {
    width: 300px;
  }
  .content-vibe {
    flex-direction: row;
    align-items: stretch;
  }
  .item-branding {
    flex-direction: row;
    align-items: center;
  }
  .item-vibe {
    flex: 1;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
  }

  .item-vibe .icon-vibe {
    margin-bottom: 20px;
  }

  .item-vibe h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.3;
  }

  .item-vibe p {
    max-height: none;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
  }
  .who-we-are__right {
    gap: 50px;
    align-items: center;
    height: 100%;
    position: relative;
  }
  .who-we-are__right .image {
    position: absolute;
    left: 330px;
    top: 50%;
    transform: translateY(-50%);
  }

  .list-skills {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 50px;
    width: 300px;
  }

  .list-skills div {
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 20px;
    line-height: 22.4px;
    text-align: center;
    display: inline-block;
  }

  .list-skills .digital-design {
    background-color: #dedaf4;
    border: 1px solid #ffadad80;
    transform: rotate(-12.54deg);
  }
  .list-skills .uiux {
    background-color: #dedaf480;
    border: 1px solid #ffcae5;
    transform: rotate(8.68deg);
  }
  .list-skills .branding {
    background-color: #fdffb680;
    border: 1px solid #ffcae5;
    transform: rotate(-15deg);
  }
  .list-skills .digital-marketing {
    background-color: #dedaf480;
    border: 1px solid #ffcae5;
    transform: rotate(8.68deg);
  }
  .list-skills .photo-video {
    background-color: #fddeee;
    border: 1px solid #ffcae5;
    transform: rotate(-15deg);
  }
  .container-wave {
    width: 112px;
    height: 102px;
    overflow: hidden;
    position: relative;
  }
  .container-wave img {
    width: 112px;
    height: 102px;
    position: absolute;
    top: 0;
    transition: transform 0.6s ease-in-out;
  }
  .container-wave img:first-child {
    left: -112px;
  }
  .container-wave img:last-child {
    left: 0;
  }
  .container-wave:hover img {
    transform: translateX(80px);
  }
  .wrapper-button-hero {
    align-items: start;
  }
  .arrow-down {
    text-align: left;
    width: 30px;
  }
  .container-warning h3 {
    font-size: 25px;
  }
  p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32.2px;
    letter-spacing: -0.2px;
  }
  .container-warning {
    position: relative;
  }
  .content-warning {
    margin: 40px 0 0 auto;
    max-width: 380px;
  }
  .mobile-menu,
  .mobile-menu-backdrop {
    display: none;
  }
  .hero__title {
    font-size: 94px;
    line-height: 118.2px;
    text-align: left;
  }
  .alivea-idea {
    position: absolute;
    bottom: -71px;
    right: 326px;
  }
  .arrow-down {
    left: 0;
    transform: translateX(0);
  }
  .img-custom-project__left {
    position: absolute;
    left: -40px;
    top: 46px;
    width: 160px;
  }

  .img-custom-project__right {
    position: absolute;
    right: -70px;
    bottom: 10px;
    width: 160px;
  }
  .container-custom-project {
    border-radius: 12px;
  }
  .container-custom-project p {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .title-section {
    font-size: 64px;
  }
  .portfolio-image-description {
    display: block;
  }
  .container-custom-project {
    border-radius: 60px;
    padding: 72px 285px;
    margin-bottom: 100px;
  }

  .img-custom-project__left {
    position: absolute;
    left: -70px;
    top: 46px;
    width: 260px;
  }

  .img-custom-project__right {
    position: absolute;
    right: -70px;
    bottom: 10px;
    width: 260px;
  }

  .container-custom-project h2 {
    font-size: 64px;
    line-height: 65px;
  }

  .container-custom-project p {
    font-size: 32px;
  }
  .item-branding__img {
    border-radius: 24px;
    width: 561px;
  }
  .item-branding {
    gap: 92px;
    padding: 72px;
    border-radius: 60px;
  }
  .item-branding h3 {
    font-size: 64px;
    line-height: 65px;
    margin-bottom: 20px;
  }
  p {
    font-weight: 400;
    font-size: 24px;
    line-height: 133%;
    letter-spacing: -0.2px;
  }
  .container-warning h3 {
    font-size: 32px;
  }
  .container-warning {
    position: relative;
  }
  .alivea-idea {
    position: absolute;
    bottom: -61px;
    right: 428px;
  }
  .content-warning {
    margin: 40px 0 0 auto;
    max-width: 482px;
  }
  .hero__title {
    font-size: 125px;
    line-height: 147.2px;
  }
  section.hero {
    padding: 96px 0;
  }
}
@media (min-width: 1400px) {
  .item-brand-led h3 {
    font-size: 96px;
    width: 546px;
  }

  .item-brand-led__desc {
    font-size: 32px;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1370px;
  }
  .hero__title {
    font-size: 128px;
    line-height: 147.2px;
    letter-spacing: -1px;
  }
}

/* ==========================================================================
   Page Animations
   ========================================================================== */

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation Classes - Disabled (GSAP ScrollTrigger handles these now) */
/* .animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
} */

/* .animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
} */

/* .animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
  opacity: 0;
} */

/* Stagger delays for grid items - Disabled (GSAP handles delays programmatically) */
/* .animate-stagger-1 { animation-delay: 0.1s; }
.animate-stagger-2 { animation-delay: 0.2s; }
.animate-stagger-3 { animation-delay: 0.3s; }
.animate-stagger-4 { animation-delay: 0.4s; }
.animate-stagger-5 { animation-delay: 0.5s; }
.animate-stagger-6 { animation-delay: 0.6s; }
.animate-stagger-7 { animation-delay: 0.7s; }
.animate-stagger-8 { animation-delay: 0.8s; }
.animate-stagger-9 { animation-delay: 0.9s; } */

/* Header animations - Disabled (GSAP ScrollTrigger handles this) */
/* .animate-header {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
} */

/* Article animations - Disabled (GSAP ScrollTrigger handles this) */
/* .animate-article {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
} */
