body {
      margin: 0;
      font-family: 'Inter', sans-serif;
	padding-top: 81px;
    }
    body .post, 
    body .page,
    body.post, 
    body.page { margin: 0 0 0 0  }
    
   .hi-container .page-content, 
   .hi-container  .entry-content, 
   .hi-container  .entry-summary {
      margin: 0 0 0;
    }
.site-main {
	/* max-width:1320px; */
	margin: 0 auto;
	min-height: calc(100vh - 460px - 82px);
}
header.site-header{
	position: fixed;
  width: 100%;
  top: 0px;
  z-index: 2;
}

.entry-content.page-custom {
	margin-bottom:50px;
}
  
    /* NAVBAR */
    .ha-navbar {
      position: sticky;
      top: 0;
      background: #fff;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      z-index: 999;
    }

    .ha-container {
      max-width: 1320px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 10px;
    }

    /* LOGO */
    .ha-logo img {
      height: 45px;
      display: block;
    }

    /* MENU */
    .ha-menu,
    #primary-menu{
      display: flex;
      align-items: center;
      position: relative;
      z-index: 1000;
    }

    .ha-menu__list,
    #primary-menu ul{
      list-style: none;
      display: flex;
      align-items: center;
      gap: 28px;
      margin: 0;
      padding: 0;
    }

    .ha-menu__item,
    #primary-menu ul > li {
      position: relative;
    }

    .ha-menu__link {
      text-decoration: none;
      color: #333;
      font-size: 16px;
      font-weight: 500;
      transition: 0.2s;
    }

    .ha-menu__link:hover {
      color: #000;
    }

    /* DROPDOWN */
    .ha-menu__item--dropdown > .ha-menu__link::after {
      content: "▾";
      font-size: 12px;
      margin-left: 5px;
    }

    .ha-dropdown {
      position: absolute;
      top: 140%;
      left: 0;
      background: #fff;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      padding: 10px 0;
      border-radius: 8px;
      display: none;
      min-width: 150px;
    }

    .ha-dropdown li {
      list-style: none;
    }

    .ha-dropdown a {
      display: block;
      padding: 8px 16px;
      font-size: 14px;
      text-decoration: none;
      color: #333;
    }

    /* Hover desktop */
    @media (min-width: 993px) {
      .ha-menu__item--dropdown:hover .ha-dropdown {
        display: block;
      }
    }

    /* BUTTON */
	/*.site-header .ha-menu__item:last-child .ha-menu__link,
    .ha-btn-masuk {
      background: linear-gradient(135deg, #d63384, #c2185b);
      color: #fff;
      padding: 10px 22px;
      border-radius: 999px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 6px 14px rgba(214, 51, 132, 0.3);
      transition: 0.3s;
    }

    .ha-btn-masuk:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }*/

    /* TOGGLE */
    .ha-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
    }

    /* MOBILE */
    @media (max-width: 992px) {

      .ha-toggle {
        display: block;
      }

      .ha-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
      }

      .ha-menu__list {
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        width: 100%;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);

        transition: 
          max-height 0.4s ease,
          opacity 0.3s ease,
          transform 0.3s ease;
      }

      .ha-menu__list--active {
        max-height: 1000px; /* FIX penting */
        opacity: 1;
        transform: translateY(0);
        padding: 20px;
      }

      .ha-dropdown {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 10px;
      }
    }

    /* Dummy content */
    .content {
      height: 2000px;
      padding: 40px;
    }
    
    
    /*sosmed*/
    
    .social-links a {
    font-size: 20px;
    margin-right: 10px;
    color: #333;
    transition: 0.3s;
}

.social-links a:hover {
    color: #0073aa;
}




.ha-footer {
    background: #212529;
    color: #9ca3af;
    padding: 60px 20px 20px;
}

/* Container */
.ha-footer__container {
    align-items: unset;
    justify-content: unset;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

/* Logo */
.ha-footer__logo img {
    max-height: 60px;
    display: block;
    margin-bottom: 20px;
}

/* Deskripsi */
.ha-footer__desc { 
    max-width: 350px;
}

/* Title */
.ha-footer__title {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Menu */
.ha-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ha-footer__menu li {
    margin-bottom: 5px;
}

.ha-footer__menu a {
    color: #9ca3af;
    text-decoration: none;
    transition: 0.3s;
}

.ha-footer__menu a:hover {
    color: #fff;
}

/* Social */
.ha-footer__social {
    display: flex;
    gap: 15px;
}

.ha-footer__social a {
    text-decoration: unset;
    width: 40px;
    height: 40px;
    background: #ffffff1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    font-size: 16px;
}

.ha-footer__social a:hover {
    background: #c5266c;
}

/* Bottom */
.ha-footer__bottom {
    border-top: 1px solid #1f2937;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ha-footer__logo {
        display: block;
        width: 60px;
        margin: 0 auto;
    }
    .ha-footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ha-footer__desc {
        margin: auto;
    }

    .ha-footer__social {
        justify-content: center;
    }
}

.stat-card-section {
    position: absolute;
    bottom: -20%;
}

  .stat-card {
  text-align: center;
  background: #fff;
  border: 1px solid #00000005;
  border-radius: 1.2rem;
  height: 100%;
  padding: 25px 10px;
  transition: transform .3s;
  box-shadow: 0 10px 30px #0000000d;
}
.stat-card .icon-circle {
  background-color: #c5266c;
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin: 0 auto 15px;
  display: flex;
}
.stat-card .icon-circle {
  color: #fff;
}
.stat-card h2 {
  color: #111827;
      margin: 0px 0px;
  font-size: 1.8rem;
	    line-height: 1;
}
.stat-card p {
  color: #4b5563;
  white-space: nowrap;
  margin-bottom: 0;
  font-size: .75rem;
  font-weight: 500;
}


.icon-contact .elementor-icon  { 
    background-color: #c5266c1a; 
    border-radius: 90px;
    padding: 10px;
}
.icon-contact h3.elementor-icon-box-title {
	margin: 0px 0px;
}

.accordion-faq  .e-n-accordion-item {
	box-shadow: 0 4px 12px #00000008;
	border: 1px solid #dee2e6 !important;
  border-radius: 10px !important;
  overflow: hidden;
margin-bottom: 15px !important;
}
.accordion-faq  .e-n-accordion-item .e-n-accordion-item-title,
.accordion-faq  .e-n-accordion-item .elementor-element.e-con-full{
	border: 0px solid #dee2e6 !important;
}
.accordion-faq .e-n-accordion-item .e-n-accordion-item-title[aria-expanded="true"]  {
	background-color:#c5266c; 
}

.accordion-faq .e-n-accordion-item .e-n-accordion-item-title[aria-expanded="true"] .e-n-accordion-item-title-text {
		color:#ffffff;
}
 .accordion-faq .e-n-accordion-item .e-n-accordion-item-title[aria-expanded="true"] span > svg.e-fas-minus {
  fill: #fff !important;
}

  .ws-card {
width: calc( 33.33% - 20px );
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  margin: 0px;
  transition: all 0.5s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
 margin: 10px 10px;
  }

  /* Hover effect */
  .ws-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
    transform: translateY(0px);
  }

  .ws-card__image {
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
  }

  .ws-card__image img {
    width: 100%;
   height: 100% !important;
    object-fit: cover;
  }

  .ws-card__content {
    padding: 10px 6px;
  }

  .ws-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 10px 0;
  }

  .ws-card__meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ws-card__meta span {
    color: #e91e63;
	  padding: 5px 0px 0px 2px;
  }

  .ws-card__footer {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
  }

  .ws-card__button {
    background: #C5266C;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
  }
.ws-card__button:hover {
	background: #A01955;
  color: #fff;
}

  .ws-card__button:hover {
    background: #A01955;
  }
 
.ws-card-section{
  display: flex;
  flex-wrap: wrap;
}

.ha-testimonial-section{
	display: flex;
  flex-wrap: wrap;
}
.ha-testimonial-card {
    width: calc( 33.33% - 20px );
	margin: 10px 10px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ha-testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.ha-testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ha-testimonial-card__stars {
    color: #ff6a00;
    font-size: 18px;
    margin-bottom: 16px;
}

.ha-testimonial-card__text {
    color: #1f2a37;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ha-testimonial-card__divider {
    height: 1px;
    background: #ddd;
    margin-bottom: 18px;
}

.ha-testimonial-card__user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ha-testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f2c28c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
}

.ha-testimonial-card__name {
    font-weight: 700;
    color: #111827;
}

.ha-testimonial-card__location {
    color: #6b7280;
    font-size: 14px;
}

.event-section > .e-con-inner {
	border-top : 1px solid #c2c4c8;
}

.w-bg-img img {
	position:relative;
	z-index:1;
}
.makeup-swatch {
  z-index: 0;
  background: radial-gradient(circle,#f08bb466 0%,#ffdeea00 70%);
  border-radius: 40% 60% 70% 30%/40% 50% 60%;
  width: 120%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: -15%;
  transform: rotate(-15deg);
}

.ha-menu__link:hover{
	color: #CC256F;
}