
    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: #2c0d18;
      background-color: #fff4f8;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Layout components */
    .container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding-left: 16px;
      padding-right: 16px;
    }
    .searchInput {
    color: #75213e !important;
    background: transparent;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

    /* When input is focused, style it exactly like search-title */
    .searchInput:focus {
        color: #75213e !important;
        font-weight: 700;
        font-size: 20px;
        font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
    }

    /* Hide search-title when input is focused or has value */
    .search-content:has(.searchInput:focus) .search-title,
    .search-content:has(.searchInput:not(:placeholder-shown)) .search-title {
        display: none;
    }

    /* Remove cross/clear button from search input */
    .searchInput::-webkit-search-cancel-button {
        -webkit-appearance: none;
        appearance: none;
        display: none;
    }

    .searchInput::-ms-clear {
        display: none;
        width: 0;
        height: 0;
    }

    /* Placeholder color for all browsers, targeting the specific input */
    .searchInput::placeholder { color: #d5bec6 !important; opacity: 1; }
    .searchInput::-webkit-input-placeholder { color: #d5bec6 !important; opacity: 1; }
    .searchInput::-moz-placeholder { color: #d5bec6 !important; opacity: 1; }
    .searchInput:-ms-input-placeholder { color: #d5bec6 !important; opacity: 1; }
    .searchInput::-ms-input-placeholder { color: #d5bec6 !important; opacity: 1; }

    /* Search suggestions dropdown */
    .search-suggestions-container {
        position: relative;
        width: 100%;
    }

    .search-suggestions-dropdown {
        position: absolute;
        top: 100%;
        width: calc(100% + 40px);
        min-width: calc(100% + 40px);
        background-color: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1000;
        margin-top: 8px;
        display: none;
        animation: fadeInDown 0.15s ease-out;
        /* Hide scrollbar but keep scroll functionality */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    /* Hide scrollbar for Chrome, Safari and Opera but keep scroll functionality */
    .search-suggestions-dropdown::-webkit-scrollbar {
        width: 12px; /* Increased width for better scroll area */
        display: none; /* Hide the scrollbar */
    }

    .search-suggestions-dropdown::-webkit-scrollbar-track {
        display: none;
    }

    .search-suggestions-dropdown::-webkit-scrollbar-thumb {
        display: none;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .search-suggestions-dropdown.show {
        display: block;
    }

    /* Scrollbar is hidden but scroll functionality remains */

    .search-suggestion-item {
        padding: 12px 16px;
        cursor: pointer;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 15px;
        font-weight: 400;
        color: #212121;
        transition: background-color 0.1s ease;
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
        background-color: #ffffff;
        line-height: 1.5;
    }

    /* First suggestion item after heading */
    .search-suggestion-heading + .search-suggestion-item {
        border-top: none;
    }

    .search-suggestion-item:last-child {
        border-bottom: none;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    /* Remove gradient border for Google-like clean look */
    .search-suggestion-item::before {
        display: none;
    }

    /* Selected state (keyboard navigation) - Google-like */
    .search-suggestion-item.selected {
        background-color: #f1f3f4;
    }

    .search-suggestion-item:hover,
    .search-suggestion-item.selected:hover {
        background-color: #f1f3f4;
    }

    .search-suggestion-item:hover::before {
        opacity: 0;
    }

    .search-suggestion-item.selected::before {
        opacity: 0;
    }

    .search-suggestion-item:active {
        background-color: #e8eaed;
    }

    /* Focus state for keyboard navigation */
    .search-suggestion-item:focus {
        outline: none;
        background-color: #f1f3f4;
    }

    /* Remove arrow indicator for Google-like clean look */
    .search-suggestion-item::after {
        display: none;
    }

    /* Section headings for suggestions */
    .search-suggestion-heading {
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: #75213e;
        background-color: #fff4f8;
        border-bottom: 1px solid rgba(117, 33, 62, 0.1);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .search-suggestion-heading:first-child {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    /* Divider between sections */
    .search-suggestion-divider {
        height: 1px;
        background-color: rgba(0, 0, 0, 0.05);
        margin: 0;
    }

    /* Empty state message (if needed in future) */
    .search-suggestions-dropdown:empty::before {
        content: 'No suggestions found';
        display: block;
        padding: 20px;
        text-align: center;
        color: #d5bec6;
        font-size: 14px;
        font-style: italic;
    }

    /* Responsive adjustments for suggestions */
    @media (max-width: 640px) {
        .search-suggestions-dropdown {
            max-height: 300px;
            border-radius: 0 0 6px 6px;
            margin-top: 10px;
        }

        .search-suggestion-heading {
            padding: 10px 16px 6px 16px;
            font-size: 11px;
            color: #75213e;
            background-color: #fff4f8;
        }

        .search-suggestion-item {
            padding: 10px 14px;
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .search-suggestions-dropdown {
            max-height: 240px;
            border-radius: 8px;
            margin-top: 4px;
        }

        .search-suggestion-heading {
            padding: 8px 14px 6px 14px;
            font-size: 10px;
            color: #75213e;
            background-color: #fff4f8;
        }

        .search-suggestion-item {
            padding: 10px 12px;
            font-size: 14px;
        }
    }

    .section {
      /* padding: 40px 0; */
    }

    .flex-row {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .flex-col {
      display: flex;
      flex-direction: column;
      /* gap: 16px; */
    }

    .hero-button-design img{
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: auto;
      z-index: 5;
    }

    .hero-section {
      background: url('../images/images/bakground.svg') no-repeat;
      background-position: center center;
      background-size: cover; /* ensure background scales on large screens */
      position: relative;
      overflow: hidden;
      /* min-height: 100vh; */
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('../images/images/img_group_33523.png');
      background-size: cover;
      background-position: center;
      z-index: 1;
    }
    .phone-states-plus-icon{
      background-color: #e50050;
      border-radius: 30px;
      padding: 17px;
      margin-left: -33px;
    }
    .phone-states-plus-icon img{
      max-width: initial;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 40px 0 0 0;
    }

.hero-visual-wrapper{
  position: relative;
  margin-top: 15px;
}

.hero-left-card{
  position: absolute;
  left: 118px;
  bottom: 0;
  width: 308px;
  z-index: 3;
}

.hero-left-card-inner{
  line-height: 1;
  background: rgba(255, 244, 248, 0.8);
  border-radius: 0 90px 0 0;
  padding: 28px 26px;
  margin-bottom: 419px;
}

.hero-left-card-text{
  font-size: 21px;
  font-weight: 700;
  color: #75213e;
  text-align: center;
  margin-top: 196px;
}

.hero-left-card-text span{
  color: rgba(44, 13, 24, 0.5);
  display: block;
}

.hero-left-card-image{
  width: 305px;
  position: absolute;
  top: -180px;
  left: 0;
}

.hero-center-mockup{
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-center-image{
  width: 100%;
  max-width: 644px;
  height: auto;
}

.hero-right-card{
  position: absolute;
  right: 140px;
  top: 285px;
  width: 306px;
  z-index: 3;
}

    /* Header */
    .header {
      background: rgba(255, 244, 248, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 244, 248, 0.2);
      border-radius: 60px;
      padding: 12px 16px 12px 22px !important;
      margin-bottom: 40px;
      position: relative;
      z-index: 100;
    }

    .header-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .header-nav .logo{
      width: 94px;
      height: 57px;
    }
    /* Logo Section */

    .logo-section {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-icon {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .star-icon {
      position: absolute;
      top: -8px;
      right: -4px;
      width: 12px;
      height: 12px;
      z-index: 2;
    }

    .logo-q {
      font-size: 32px;
      font-weight: 700;
      background: linear-gradient(135deg, #e50050 0%, #ff1493 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .logo-text {
      font-size: 20px;
      font-weight: 600;
      color: #e50050;
      margin-left: 4px;
    }

    .nav-menu {
      display: none;
      align-items: center;
      gap: 8px;
    }

    .nav-link {
      font-size: 17px;
      font-weight: 500;
      color: #75213e;
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 8px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-link:hover {
      color: #e50050;
      background: rgba(229, 0, 80, 0.1);
      transform: translateY(-1px);
    }

    .nav-link.active {
      color: #2c0d18;
      font-weight: 700;
    }

    .nav-separator {
      color: #e50050;
      font-size: 22px;
      font-weight: 400;
      margin: 0 4px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn-primary {
      background-color: #e50050;
      color: #ffffff;
      padding: 17px 25px;
      border-radius: 34px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      letter-spacing: 0.5px;
    }

    .btn-primary:hover {
      background-color: #c5004a;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(229, 0, 80, 0.3);
    }

    .btn-primary:focus {
      outline: 2px solid #e50050;
      outline-offset: 2px;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      width: 44px;
      height: 44px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 1001;
      padding: 0;
      transition: all 0.3s ease;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-toggle:hover {
      transform: scale(1.1);
    }

    /* Menu icon (grid icon) */
    .menu-icon {
      width: 100%;
      height: 100%;
      transition: all 0.3s ease;
    }

    /* Close icon (cross) */
    .close-icon {
      position: absolute;
      width: 44px;
      height: 44px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transform: scale(0);
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .close-icon span {
      position: absolute;
      width: 20px;
      height: 3px;
      background: #e50050;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .close-icon span:first-child {
      transform: rotate(45deg);
    }

    .close-icon span:last-child {
      transform: rotate(-45deg);
    }

    /* Show close icon when menu is active */
    .mobile-menu-toggle.active .menu-icon {
      opacity: 0;
      transform: scale(0);
    }

    .mobile-menu-toggle.active .close-icon {
      opacity: 1;
      transform: scale(1);
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:   rgba(255, 255, 255, 0);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 999;
    }

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

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: -12px;
      right: -100%;
      width: 300px;
      height: 100vh;
        background: rgba(229, 0, 80, 0.958);
        backdrop-filter: blur(78.80000305175781px);
        -webkit-backdrop-filter: blur(78.80000305175781px);
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
      box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu.active {
      right: -20;
    }

    .mobile-menu-content {
      height: 100%;
      /* display: flex; */
      flex-direction: column;
      justify-content: space-between;
      padding: 80px 30px 30px;
    }

    .mobile-menu-nav {
      /* flex: 1; */
      text-align: center;
    }

    .mobile-menu-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mobile-menu-nav li {
      margin-top: 40px;
    }

    .mobile-menu-nav a {
      display: block;
      padding: 15px 0;
      color: #ffffff;
      text-decoration: none;
      font-weight: 500;
      font-size: 18px;
      text-transform: capitalize;
      transition: all 0.3s ease;
      position: relative;
    }
    .mobile-menu-button{
      background-color: #ffffff;
      color: #e50050;
      padding: 17px 25px;
      border-radius: 34px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      letter-spacing: 0.5px;
    }

    .mobile-menu-nav a:hover {
      color: #e50050;
      padding-left: 10px;
    }

    .mobile-menu-nav a.active {
      color: #ffffff;
      font-weight: 700;
      text-decoration: underline;
    }

    .mobile-menu-nav a.active::before {
      content: '';
      position: absolute;
      left: -30px;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 20px;
      background: #e50050;
      border-radius: 2px;
    }

    .mobile-menu-footer {
      display: flex;     
      justify-content: center;
      padding-top: 30px;
    }

    .mobile-menu-footer .btn-primary {
      width: 100%;
      justify-content: center;
      margin-bottom: 20px;
    }

    .btn-secondary {
      background-color: #fff4f8;
      color: #e50050;
      padding: 18px 34px 18px 34px;
      border-radius: 34px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }
    .btn-secondary-hero-section {
      background-color: #fff4f8;
      color: #e50050;
      padding: 18px 34px 18px 34px;
      border-radius: 34px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }


    .btn-gradient {
      background: linear-gradient(270deg, #ff8c00 0%, #e50050 100%);
      color: #fff4f8;
      padding: 18px 34px;
      border-radius: 28px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }
    .btn-gradient-hero-section {
      background: linear-gradient(270deg, #ff8c00 0%, #e50050 100%);
      color: #fff4f8;
      padding: 18px 34px;
      border-radius: 28px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: all 0.3s ease;
    }
    /* Typography */
    .hero-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 1;
      text-align: center;
      text-transform: capitalize;
      background: linear-gradient(99deg, #2c0d18 0%, #e50050 50%, #ff8c00 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-title .shine-word{
      font-family: 'Raflesia', serif;
      font-weight: 400;
    }

    .hero-subtitle {
      line-height: 1.1;
      font-size: 21px;
      font-weight: 500;
      color: #75213e;
      text-align: center;
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.2;
      text-align: center;
      text-transform: capitalize;
      /* margin-bottom: 24px; */
    }

    .section-subtitle {
      max-width: 50%;
      font-size: 20px;
      font-weight: 500;
      color: #75213e;
      text-align: center;
      margin-bottom: 40px;
    }

    .badge {
    background-color: #ffffff;
    border-radius: 88px;
    padding: 13px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 16px; */
    }

    .badge-text {
      font-size: 20px;
      font-weight: 500;
      color: #75213e;
      text-transform: capitalize;
    }

    .badge-highlight {
      color: #e50050;
    }

    /* Hero phone mockup */
    .hero-phone {
      position: relative;
      width: 306px;
      height: 390px;
      margin: 0 auto;
    }

    .phone-bg {
      position: absolute;
      top: 59px;
      left: 0;
      width: 306px;
      height: 330px;
      background: linear-gradient(180deg, #ff8c0099 0%, #e5005099 100%);
      border-radius: 152px 152px 30px 30px;
    }

    .phone-image {
      position: absolute;
      top: 0;
      left: 8px;
      width: 290px;
      height: 390px;
      border-radius: 145px;
      overflow: hidden;
    }

    .phone-stats {
      position: absolute;
      bottom: 10px;
      right: 15px;
      background-color: #fff4f8;
      border-radius: 34px;
      padding: 6px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0px 4px 50px rgba(136, 136, 136, 1);
    }

    /* Search section */
    .search-section {
      background-color: #fff4f8;
      border: 1px solid #d5bec6;
      border-radius: 14px;
      padding: 24px;
      margin: 86px 0;
    }

    .search-row {
      display: flex;
      flex-direction: column;
      gap: 55px;
    }

    .search-item {
      display: flex;
      align-items: center;
      gap: 14px;
      flex: 1;
    }

    .search-icon {
      width: 72px;
      height: 72px;
      background-color: #fff4f8;
      border: 1px solid #d5bec6;
      border-radius: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .search-content {
      flex: 1;
    }

    .search-title {
      font-size: 20px;
      font-weight: 700;
      color: #75213e;
    }

    .search-placeholder {
      font-size: 20px;
      font-weight: 500;
      color: #d5bec6;
    }

    .divider {
      width: 1px;
      height: 54px;
      background-color: #d5bec6;
    }

    /* Benefits section */
    .benefits-section {
      background: linear-gradient(203.85deg, #FF8C00 10.22%, #E50050 53.13%);
      position: relative;
      padding: 70px 0;
    }
    .benefits-carousel-container{
      margin-left: 132px;
    }

    .benefits-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('images/images/img_group_33523_gray_50.png');
      background-size: cover;
      background-position: center;
    }

    .benefits-content {
      position: relative;
      z-index: 2;
    }

    .benefits-title {
      font-size: 72px;
      font-weight: 700;
      color: #fff4f8;
      text-align: left;
      margin-bottom: -40px;
    }
    .benefits-title2 {
      font-size: 72px;
      font-weight: 700;
      color: #fff4f8;
      text-align: left;
      margin-bottom: -19px;
    }

    .benefits-subtitle {
      font-size: 22px;
      font-weight: 400;
      color: #fff4f8;
      /* max-width: 640px; */
      line-height: 25px;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      overflow-x: auto;
      padding-bottom: 20px;
    }

    /* Benefits Carousel */
    .benefits-carousel {
      position: relative;
    }

    .benefits-slider {
      padding-top: 5px;
      display: flex;
      gap: 30px;
      overflow-x: auto;
      padding-bottom: 20px;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .benefits-slider::-webkit-scrollbar {
      display: none;
    }

    .carousel-navigation {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .carousel-btn {
      width: 40px;
      height: 40px;
      border-radius: 20px;
      background-color: rgba(255, 244, 248, 0.9);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .carousel-btn:hover {
      background-color: #fff4f8;
      transform: scale(1.1);
    }

    .carousel-dots {
      display: flex;
      gap: 12px;
    }

    .carousel-dots .dot {
      width: 12px;
      height: 12px;
      border-radius: 6px;
      background-color: rgba(255, 244, 248, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .carousel-dots .dot.active {
      background-color: #e50050;
      transform: scale(1.2);
    }

    .benefit-card {
      background-color: rgba(255, 244, 248, 0.9);
      border-radius: 30px;
      padding: 37px 34px;
      min-width: 298px;
    }

    .benefit-icon {
      width: 72px;
      height: 72px;
      border-radius: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .benefit-icon.gradient {
      background: linear-gradient(180deg, #e50050 0%, #ff8c00 100%);
    }

    .benefit-icon.white {
      background-color: #fff4f8;
    }

    .benefit-title {
      letter-spacing: -1px;
      line-height: 23px;
      font-size: 22px;
      font-weight: 700;
      color: #75213e;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .benefit-description {
      line-height: 20px;
      font-size: 17px;
      font-weight: 500;
      color: rgba(44, 13, 24, 0.5);
      margin-bottom: 12px;
    }

    .benefit-link {
      font-size: 14px;
      font-weight: 700;
      color: #e50050;
      text-decoration: underline;
      text-transform: uppercase;
    }

    /* How it works section */
    .how-it-works {
      padding: 65px 0;
    }

    .steps-container {
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
    }

    .steps-image {
      width: 100%;
      max-width: 600px;
      position: relative;
    }

    .steps-list {
      width: 100%;
      max-width: 600px;
    }

    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 34px;
    }

    .step-number {
      width: 64px;
      height: 64px;
      border: 1px solid #d5bec6;
      border-radius: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 23px;
      font-weight: 500;
      color: #e50050;
      flex-shrink: 0;
    }

    .step-content h3 {
      font-size: 24px;
      font-weight: 700;
      color: #75213e;
      /* margin-bottom: 6px; */
    }
    .steps-container{
      margin-top: 70px;
    }

    .step-content p {
      font-size: 19px;
      font-weight: 500;
      color: rgba(44, 13, 24, 0.5);
      text-transform: capitalize;
      letter-spacing: 0px;
      line-height: 26px;
    }

    /* Reviews section */
    .reviews-section {
      background: 
        linear-gradient(225.94deg, rgba(255, 140, 0, 0.6) 14.73%, rgba(229, 0, 80, 0.6) 59.41%),
        url('../images/images/9d496329fa0876e9cdbdb7fd5a40a93b3058a588.jpg');
      background-size: cover;
      background-position: center;
      padding: 70px 0;
    }

    .reviews-header {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 40px;
      /* margin-bottom: 52px; */
    }

    .reviews-title {
      font-size: 48px;
      font-weight: 700;
      color: #fff4f8;
      text-align: left;
      letter-spacing: -3px;
      line-height: 76px;
    }

    .reviews-stats {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .reviews-avatars {
      display: flex;
      align-items: center;
    }

    .avatar {
      width: 56px;
      height: 56px;
      border-radius: 28px;
      margin-left: -24px;
    }

    .avatar:first-child {
      margin-left: 0;
    }

    .reviews-rating {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .stars {
      display: flex;
      gap: 6px;
    }

    .star {
      width: 16px;
      height: 16px;
    }

    .rating-text {
      font-size: 16px;
      font-weight: 700;
      color: #fff4f8;
    }

    .reviews-slider {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      padding-bottom: 20px;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .reviews-slider::-webkit-scrollbar {
      display: none;
    }

    .review-card {
      margin-top: 20px;
      background-color: rgba(255, 244, 248, 0.8);
      border-radius: 30px;
      padding: 70px 48px;
      min-width: 485px;
      position: relative;
      box-shadow: 0px 4px 100px rgba(136, 136, 136, 1);
    }

    .review-quote {
      position: absolute;
      top: 55px;
      right: 48px;
      width: 54px;
      height: 36px;
    }

    .review-text {
      font-size: 15px;
      font-weight: 500;
      font-style: italic;
      color: #75213e;
      margin-bottom: 56px;
      line-height: 1.3;
    }

    .review-author {
      display: flex;
      justify-content: center;
      gap: 115px;
      align-items: center;
    }

    .author-info {
      display: flex;
      align-items: center;
      gap: 10px;
      /* background-color: #fff4f8;
      border-radius: 34px;
      padding: 6px;
      box-shadow: 0px 4px 50px rgba(136, 136, 136, 1); */
    }

    .author-avatar {
      width: 56px;
      height: 56px;
      border-radius: 28px;
    }

    .author-details {
      padding-right: 10px;
      line-height: 16px;
    }

    .author-name {
      font-size: 16px;
      font-weight: 700;
      color: #e50050!important;
      text-transform: uppercase;
      letter-spacing: -1px;
    }

    .author-title {
      font-size: 16px;
      font-weight: 500;
      color: #75213e;
      text-transform: capitalize;
      letter-spacing: -1px;
    }

    .review-stars {
      display: flex;
      gap: 6px;
    }
    .partner-section-subtitle{
      line-height: 26px;
      max-width: 51%;
      font-size: 22px;
    }

    /* Pagination */
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 30px;
    }

    .pagination-btn {
      width: 36px;
      height: 36px;
      border-radius: 18px;
      background-color: #fff4f8;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0px 4px 11px rgba(136, 136, 136, 1);
    }

    .pagination-dots {
      display: flex;
      gap: 12px;
      padding: 0 56px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 4px;
      background-color: #ffffff;
    }

    .dot.active {
      background-color: #fff4f8;
      padding: 10px;
      border-radius: 14px;
      background-color: #e50050;
    }

    /* Partners section */
    .partners-section {
      padding: 70px 0;
    }

    .partners-grid {
      display: flex;
      gap: 40px;
      overflow: hidden;
      padding-bottom: 20px;
      position: relative;
    }

    .partners-marquee {
      display: flex;
      gap: 40px;
      animation: marquee 30s linear infinite;
      width: max-content;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .partners-marquee:hover {
      animation-play-state: paused;
    }

    .partner-logo {
      width: 114px;
      height: 84px;
      border-radius: 14px;
      flex-shrink: 0;
    }

    /* Pricing section */
    .pricing-section {
      background: linear-gradient(203.85deg, #FF8C00 10.22%, #E50050 53.13%);

      position: relative;
      padding: 70px 0;
    }

    .pricing-cards {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      padding-bottom: 20px;
    }

    .pricing-card {
      background-color: rgba(255, 244, 248, 0.9);
      border-radius: 30px;
      padding: 18px 18px 44px 18px;
      min-width: 380px;
      position: relative;
    }
    .pricing-card2 {
      background-color: rgb(255, 255, 255);
      border-radius: 30px;
      padding: 18px 18px 44px 18px;
      min-width: 380px;
      position: relative;
    }

    .pricing-badge {
      background-color: #e50050;
      color: #fff4f8;
      padding: 4px 12px;
      border-radius: 16px;
      font-size: 16px;
      font-weight: 700;
      display: inline-block;
      margin-bottom: 28px;
    }

    .pricing-badge.popular {
      border: 1px solid #d5bec6;
      text-transform: capitalize;
      background-color: transparent;
      color: #75213e;
    }

    .pricing-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 44px;
      padding: 0 32px;
    }

    .pricing-title {
      font-size: 29px;
      text-transform: capitalize;
      line-height: 29px;
      letter-spacing: -1px;
      font-weight: 700;
      background: linear-gradient(65deg, #e50050 0%, #8750d4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      max-width: 280px;
    }
    .pricing-cta .btn-gradient{
      padding: 17px 26px;
    }

    .pricing-price {
      font-size: 21px;
      font-weight: 700;
      color: #75213e;
      text-transform: uppercase;
    }

    .pricing-features {
      padding: 0 32px;
      margin-bottom: 48px;
    }

    .pricing-feature {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 8px;
    }

    .feature-dot {
      width: 14px;
      height: 14px;
      background-color: #e50050;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 0;
    }

    .feature-text {
      font-size: 17px;
      text-transform: lowercase;
      font-weight: 500;
      color: rgba(44, 13, 24, 0.5);
    }

    .pricing-cta {
      text-align: center;
      padding: 0 32px;
    }

    /* App section */
    .app-section {
      padding: 70px 0 0 0;
      position: relative;
    }

    .app-mockup {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
    }
    .app-buttons{
      
      display: flex;
      gap: 20px;
      justify-content: center;
      position: relative;
      top: 198px;
    }
     .app-section-background-image{
       background-image: url(../images/images/Rectangle\ 42.png);
       background-size: contain;
       background-position: center;
       background-repeat: no-repeat;
       max-width: 100%;
       width: 100%;
       height: 286px;
       margin: 0 auto;
       position: relative;
       top: -235px;
     }

    .phone-mockup {
      width: 100%;
      border-radius: 74px 74px 0 0;
    }

    .app-icons {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 40px;
    }

    .app-store-btn {
      width: 252px;
      height: 68px;
      border-radius: 34px;
    }

    .google-play-btn {
      width: 278px;
      height: 68px;
      border-radius: 34px;
    }

    /* Footer */
    .footer {
      background-color: #fff4f8;
      position: relative;
      max-width: 1600px;
      width: 100%;
      height: 727px;
      margin: 0 auto;
      overflow: hidden;
    }

    .footer-content {
      display: flex;
      justify-content: flex-start;
      width: 1277px;
      height: 266px;
      opacity: 1;
      position: absolute;
      top: 116px;
      gap: 440px;
    }

    .footer-brand {
      max-width: 400px;
    }

    .footer-logo {
      margin-top: 12px;
      width: 203px;
      margin-bottom: 11px;
    }

    .footer-description {
     font-size: 17px;
     font-weight: 500;
     color: rgba(44, 13, 24, 0.5);
     line-height: 1.1;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .footer-section h3 {
      text-transform: capitalize;
      font-size: 22px;
      font-weight: 700;
      color: #75213e;
      margin-bottom: 22px;
    }

    .footer-section ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .footer-section a {
      font-size: 17px;
      font-weight: 400;
      color: rgba(44, 13, 24, 0.5);
      text-decoration: underline;
      text-transform: capitalize;
      transition: color 0.3s ease;
    }

    .footer-section a:hover {
      color: #e50050;
    }

    .footer-bg-text {
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 367px;
      font-weight: 700;
      text-transform: capitalize;
      z-index: 1;
      pointer-events: none;
      opacity: 0.6;
      white-space: nowrap;
      line-height: 1;
      background: linear-gradient(180deg, #8b7c81 0%, #decad1 50%, #ffffff 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .footer-copyright {
      text-align: center;
      padding: 20px 0;
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      z-index: 10;
    }

    .copyright-text {
      font-weight: 700;
      font-size: 20px;
      line-height: 26px;
      letter-spacing: 0%;
      text-align: center;
      text-transform: lowercase;
      color: #2C0D1880;
      margin: 0;
    }

    .copyright-go {
      text-transform: capitalize;
      color: #E6007A;
    }

    .copyright-glow {
      text-transform: capitalize;
      color: #E6007A;
    }

    .copyright-com {
      text-transform: lowercase;
      color: #E6007A;
    }
    .pricing-section-header{
        line-height: 1;
    }
    .app-section-subtitle{
      line-height: 23px;
      font-size: 22px;
    }
/* ////////////////////////////////////// */
    /* bec.ome a glower css*/
/* ///////////////////////////////////// */

    .hero-content-top{
      margin-top: 30px;
    }
    .bag-hero-title{
      margin-top: 20px;
      font-size: 36px;
      font-weight: 700;
      line-height: 1;
      text-align: center;
      text-transform: capitalize;
      background: linear-gradient(89.89deg, #FF8C00 27.45%, #E50050 61.61%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;

    }
    .bag-hero-title .shine-word{
      font-size: 75px;
      font-family: 'Raflesia', serif;
      font-weight: 400;
    }
    .bag-hero-buttons{
      margin-bottom: 70px;
      display: flex;
      justify-content: center;
      gap: 16px;
    }
    .bag-hero-carosal{
      margin-top: 60px;
      justify-content: center;
      display: flex;
      gap: 10px;
      margin-bottom: 50px;
    }
    .bag-hero-carosal .image-center{
      margin-top: 35px;
      width:420px;
      height:710px;
    }
    .bag-hero-carosal .image-left{
      width:420px;
      height:787px;
    }
        .service-filter-pills {
     margin-bottom: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 75px;
    }
    .service-filter-pills .filter-pill {
        appearance: none;
        border: 1px solid rgba(213, 190, 198, 1);
        border-radius: 999px;
        background: rgb(255 246 248);
        color: rgba(118, 33, 62, 1);
        font-size: 17px;
        font-weight: 500;
        padding: 10px 26px;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: 0 4px 12px rgba(229, 0, 80, 0.05);
    }
    .service-filter-pills .filter-pill:hover {
        border-color: rgba(229, 0, 80, 0.6);
        color: rgba(229, 0, 80, 1);
        background: rgba(255, 255, 255, 0.6);
    }
    .service-filter-pills .filter-pill.active {
        background: rgba(229, 0, 80, 1);
        color: #ffffff;
        border-color: rgba(229, 0, 80, 1);
    }
    .service-filter-pills .filter-pill:focus-visible {
        outline: 2px solid rgba(229, 0, 80, 0.75);
        outline-offset: 2px;
    }
    /* become a glower future section */
            /* Added future-section namespace prefix to all classes to prevent CSS conflicts */
        /* .future-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */

        .future-section {
            background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
            min-height: 100vh;
            padding: 40px 20px;
        }

        .future-section__container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .future-section__header {
            text-align: center;
            margin-bottom: 50px;
        }

        .future-section__header h1 {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.1;
        }

        .future-section__dark {
            letter-spacing: -2px;
            margin-top: 20px;
            font-size: 25px;
            font-weight: 700;
            line-height: 1;
            text-align: center;
            text-transform: capitalize;
            background: linear-gradient(90.27deg, #2C0D18 -6.76%, #E50050 51.11%, #FF8C00 85.43%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .future-section-raflesia-text{
          
          font-size: 75px;
          font-family: 'Raflesia', serif;
          font-weight: 400;
        }

        .future-section__header h1 .future-section__pink {
            color: #e6196e;
        }

        .future-section__header h1 .future-section__orange {
            color: #ff9500;
        }

        /* .future-section__header h2 {
            font-size: 2.2em;
            font-weight: 300;
            color: #e6196e;
            margin-bottom: 15px;
            letter-spacing: 2px;
        } */

        .future-section__subtitle {
          color: rgba(118, 33, 62, 1);
          font-weight: 500;
          font-size: 18px;
          line-height: 1.3;
          padding: 0 150px;
        }

        .future-section__content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 50px;
        }

        .future-section__section {
            padding: 40px 24px;
            border-radius: 15px;
            border: 1px solid transparent;
        }

        .future-section__section--reality {
            background-color: #eadde2;
        }

        .future-section__section--future {
            background-color: #ffecef;
            border-color: #4caf50;
        }

        .future-section__section-header {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 0px;
            margin-bottom: 15px;
        }

        .future-section__section--reality .future-section__section-header {
            color: rgba(118, 33, 62, 1);
        }

        .future-section__section--future .future-section__section-header {
            color: #4caf50;
        }

        .future-section__stat-box {
            padding: 12px 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 17px;
            color: white;
        }

        .future-section__section--reality .future-section__stat-box {
            background: rgba(234, 18, 22, 1);
        }

        .future-section__section--future .future-section__stat-box {
            background: linear-gradient(90deg, #E50050 0%, #FF8C00 100%);
        }

        .future-section__stat-icon {
          padding: 13px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .future-section__section--reality .future-section__stat-icon {
            color: #e6196e;
        }

        .future-section__section--future .future-section__stat-icon {
            color: #ff9500;
        }

        .future-section__item {
            padding: 15px 10px;
            border-radius: 50px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .future-section__section--reality .future-section__item {
            background-color: #eadde2;;
            border: 1px solid #8b747d;
        }

        .future-section__section--future .future-section__item {
            background: #ffecef;
            border: 1px solid #d5bec6;
        }

        .future-section__item-icon {
          padding: 6px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
            flex-shrink: 0;
        }

        .future-section__section--reality .future-section__item-icon {
            background: rgba(44, 13, 24, 0.1);
;
;
            color: #c41e3a;
        }

        .future-section__section--future .future-section__item-icon {
            background: #e8f5e9;
            color: #4caf50;
        }

        .future-section__item-content h3 {
            line-height: 1;
            font-size: 17px;
            font-weight: 700;
            color: rgba(118, 33, 62, 1);
            margin-bottom: 3px;
        }

        .future-section__item-content p {
            font-size: 13px;
            color: #999;
            line-height: 1.4;
            font-weight: 500;
        }

        .future-section__cta-section {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .future-section__btn {
            background: linear-gradient(270deg, #ff8c00 0%, #e50050 100%);
            color: #fff4f8;
            padding: 18px 34px;
            border-radius: 28px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .future-section__btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .future-section__btn--download {
            background: linear-gradient(90deg, #e6196e 0%, #ff0000 100%);
            color: white;
        }

        .future-section__btn--glower {
            background: linear-gradient(90deg, #c41e3a 0%, #e6196e 100%);
            color: white;
        }
        .future-section__item-icon img{
          width: 45px;
          height: 45px;
        }


        /* become a glower form  */
        .become-glower-step1-heading{
          display: flex;
          justify-content: center;
          
        }
        .become-glower-step1-heading .heading{
          background: linear-gradient(90deg, #2C0D18 0%, #E50050 54.33%, #FF8C00 86.54%);
          -webkit-text-fill-color: transparent;
          -webkit-background-clip: text;
          font-size: 60px;
          font-weight: 500;
        }

        .become-glower-step1-heading .shining-word{
          font-family: Raflesia;
          font-weight: 500;
        }
        .how-works-salon-page-button{
          margin-top: 110px;
          display: flex;
          justify-content: center;
          gap: 16px;
        }
        .future-button-section-app{
          display: flex;
          justify-content: center;
          gap: 16px;
        }
        .agent-scheduled-ui{
          justify-content: center;
          display: grid;
        }


    /* Responsive Design */
    @media (max-width: 1600px) {
      .footer-content {
        width: 94%;
        left: 2.5%;
      }
    }

    @media (max-width: 1200px) {
      .footer-content {
        width: 95%;
        left: 2.5%;
        flex-direction: column;
        gap: 40px;
        height: auto;
        top: 50px;
      }

      .footer-links {
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
      }
    }

    @media (max-width: 768px) {
      .agent-scheduled-ui{
        display: block;
      }
      .future-section__content {
          grid-template-columns: 1fr;
      }

      .future-section__header h1 {
          font-size: 2em;
      }

      .future-section__header h2 {
          font-size: 1.5em;
      }

      .future-section__cta-section {
          flex-direction: column;
          align-items: center;
      }

      .future-section__btn {
          width: 100%;
          justify-content: center;
      }
      .footer {
        height: auto;
        padding: 40px 0 80px 0;
      }

      .footer-content {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0 20px;
        flex-direction: column;
        gap: 40px;
      }

      .footer-links {
        flex-direction: row;
        justify-content: space-between;
        gap: 40px;
      }

      .footer-brand {
        max-width: 100%;
        text-align: left;
      }

      .footer-logo {
        width: 150px;
        height: 90px;
      }

      .footer-description {
        font-size: 16px;
      }

      .footer-section h3 {
        font-size: 18px;
      }

      .footer-section a {
        font-size: 16px;
      }

      .footer-copyright {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 40px;
        padding: 20px;
      }
    }

    @media (max-width: 480px) {
      .hero-content-top{
        margin-top: 0;
      }
        .searchInput {
          font-size: 19px;
          font-weight: 700;
          /* text-transform: lowercase; */
      }
      .mobile-menu-nav a.active::before{
        display: none;
      }

      .hero-button-design img{
        display: none;
      }
      .copyright-text {
        font-size: 12px;
      }
      .footer-bg-text{
        font-size: 90px;
        
      }
      .footer {
        padding: 30px 0 60px 0;
      }

      .footer-content {
        padding: 0 15px;
      }

      .footer-logo {
        width: 120px;
        height: 72px;
      }
      .download-text{
        font-size: 10px!important;
      }
      .store-text{
        font-size: 15px!important;
      }
      .apple-logo{
        width: 20px;
      }
      .footer-description {
        font-size: 14px;
      }
      .hero-buttons{
        bottom: 100px!important;
        flex-direction: row!important;
        flex-wrap: nowrap!important;
        gap: 12px!important;
        justify-content: center;
        
      }
      .app-store-btn{
        min-width: 150px!important;
        padding: 10px 16px!important;
        width: initial;
        height: initial;
      }
      .hero-content{
        padding: 10px 0 0 0;
      }
      .btn-secondary{
        min-width: 190px;
        padding: 10px 16px;
        font-size: 14px;
        gap: 0px;
      }
      .btn-secondary-hero-section{
        min-width: 190px;
        padding: 10px 16px;
        font-size: 14px;
        gap: 0px;
        display: flex;
        justify-content: center;
        gap: 10px;
      }

      .footer-section h3 {
        font-size: 16px;
      }

      .footer-section a {
        font-size: 14px;
      }

      .footer-copyright {
        margin-top: 30px;
        padding: 15px;
      }
      .divider {
        width: 100%;
        height: 1px;
        border: 1px solid #D5BEC6;
        margin: 20px 0;
      }
      /* search bar */
      .search-title{
        font-size: 19px;
        /* letter-spacing: -1px; */
      }
      .search-item input{
        font-size: 15px;
      }
      /* Match input to title on mobile when focused */
      .searchInput:focus {
        font-size: 19px;
        letter-spacing: -1px;
      }
      .search-placeholder{
        font-size: 15px;
        font-weight: 400;
        text-transform: lowercase;
      }
      .search-row{
       gap: 0px; 
      }
      .search-section{
        margin: 50px 0;
        padding: 15px;
        border: 2px solid #d5bec6
      }
      .search-icon img{
        width: 24px;
        height: 24px;
      }
      .search-icon{
        padding: 15px;
        width: initial;
        height: inherit;
      }
      /* .btn-primary{
        margin-right: auto;
        margin-left: initial!important;
        padding: 12px 25px;
      } */
      /* benefit section  */
      .carousel-navigation {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 103px;
        margin-top: 30px;
      }
      .benefits-slider{
        gap: 20px;
      }
      .benefit-card{
        min-width: 319px;
      }
      .benefits-title{
        line-height: 1;
        font-size: 45px;
        margin-bottom: -28px;
      }
      .benefits-title2{
        font-size: 45px;
        margin-bottom: -7px;
        margin-top: 18px;
      }
      .benefits-subtitle{
        font-size: 17px;
        line-height: 18px;
        font-weight: 400;
      }
      .benefits-section{
        padding: 55px 0;
      }
      .benefits-carousel-container{
        margin-left: 15px;
        margin-right: 15px;
      }
      /* how it work section  */
      .how-it-works{
        padding: 55px 0;
      }
      .how-it-work-heading{
        line-height: 45px!important;
        font-size: 43px;
      }
      .how-it-work-subtitle{
            line-height: 20px;
            font-size: 16px;
            max-width: 100%;
            margin-top: 5px;
      }
      .steps-list{
        position: relative;
        top: 300px;
      }
      .how-it-work-mobile-ss img{
        width: 162px!important;
        height: 354px!important;
      }
      .how-it-work-mobile-ss .right_image{
        top: -66px!important;
        left: 29px!important;
      }
      .how-it-work-mobile-ss .left_image{
        top: -58px!important;
        right: 25px!important;
      }
      .step-number{
        width: 60px;
        height: 60px;
        font-size: 21px;
      }
      .step-content h3{
        text-transform: capitalize;
        letter-spacing: -1px;
        font-size: 23px;
      }
      .step-content p{
        text-transform: lowercase;
        font-size: 18px;
        line-height: 19px;
      }
      .how-it-work-buttons{
        margin-top: 300px!important;
        /* justify-content: initial!important; */
      }
      .btn-gradient img{
        display: none;
      }
      .btn-gradient{
        padding: 13px 13px;
        font-size: 15px;
      }
      .btn-gradient-hero-section{
        min-width: 52%;
        padding: 13px 13px;
        font-size: 12px;
      }
      .btn-primary img{
        display: none;
      }
      .how-it-work-buttons .btn-primary{
        padding: 13px 13px;
        font-size: 15px;
      }
      /* reviews-section */
      .reviews-section{
        padding: 45px 0 0 0;
      }
      .reviews-title{
        font-size: 38px;
        letter-spacing: -1px;
        line-height: 43px;
      }
      .reviews-header{
        gap: 13px;
      }
      .avatar{
        width: 50px;
        height: 50px;
      }
      .reviews-stats{
        gap: 15px;
      }
      .reviews-carousel-container .carousel-track{
        height: 70%!important;
      }
      .review-text{
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 42px;
      }
      .review-author{
        gap: 40px;
      }
      .author-avatar{
        width:30px;
        height: 30px;
      }
      .author-title{
       font-size: 13px;
       letter-spacing: 0px;
      }
      .author-name{
        font-size: 13px;
        letter-spacing: 0px;
      }
      .review-quote{
        top: 42px;
        right: 27px;
        width: 36px;
        height: 25px;
      }
      .partner-section-header{
        margin-top: 38px!important;
      }
      .partner-section-title{
        line-height: 54px!important;
        font-size: 46px!important;
      }
      .partner-section-subtitle{
        letter-spacing: -0.1px;
        line-height: 22px;
        max-width: 100%;
        font-size: 17px;
      }
      .partners-marquee{
        gap: 8px;
      }
      .partner-logo{
        width: 66px;
        height: 53px;
        border-radius: 0px;
      }
      .partner-section-button{
        margin-top: 15px!important;
        margin-bottom: 40px!important;
      }
      .pricing-card{
        min-width: 350px;
      }
      .app-mockup {
        max-width: 90%;

      }
      .app-mockup-image {
        max-width: 85%;
      }
      .app-section{
        padding: 40px 0 0 0;
        height: 625px;
      }
      .app-section-subtitle{
        line-height: 21px;
        font-size: 17px;
        text-transform: lowercase;
        margin-bottom: initial;
        max-width: 100%;
      }
      .app-section-background-image{
        top: -191px;
      }
      .bag-hero-carosal .image-center{
        margin-top: 17px;
        width: 139px;
        height: 250px;
      }
      .bag-hero-carosal .image-left{
        width: 110px;
        height: 290px;
      }
      .bag-hero-title .shine-word{
        font-size: 46px;

      }
      .bag-hero-title{
        font-size: 23px;
      }
      .become-glower-hero-heading{
        gap: 3px;
      }
      .become-glower-hero-heading .badge-text{
        font-size: 15px;
      }
      .bag-hero-carosal{
        margin-top: 40px;
      }
      .future-section__subtitle{
        padding: 0;
        font-size: 17px;
      }
      .future-section__section{
        padding: 17px 13px;
      }
      .future-section__item-icon img{
          width: 33px;
          height: 33px;
      }
      .future-section__item-content p{
        font-size: 11px;
      }
      .future-section__item-content h3{
        font-size: 15px;
      }
      .future-section__item{
        padding: 6px 10px;
      }
      .future-section__btn{
        max-width: 75%;
      }
      .become-glower-step1-heading .heading{
        font-size: 34px;
      }
      .agent-avatars{
        justify-content: flex-start;
      }
      .custom-service-list .service-row{
        padding: 7px 13px;
        display: block;
      }
      .custom-service-list .service-meta{
        text-align: left;
      }
      .custom-service-list .service-info{
        max-width: 100%;
      }
      .custom-service-list .service-image img{
        width: 85px;
        height: 85px;
      }
      .service-meta{
        margin: 0;
        display: flex;
        justify-content: space-between;
        flex-direction: row !important;
      }
      .choose-button{
        margin-top: 10px;
      }
      .how-works-salon-page-button{
        margin-top: 300px;
      }
      .page-book-appointment{
          padding: 0;
      }
    }


    /* Interactive states */
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-gradient-hero-section:hover,
    .btn-gradient:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .benefit-card:hover,
    .review-card:hover,
    .pricing-card:hover {
      transform: translateY(-4px);
      transition: transform 0.3s ease;
    }

    .partner-logo:hover {
      transform: scale(1.05);
      transition: transform 0.3s ease;
    }

    /* Responsive media queries */
    @media (min-width: 640px) {
      .container {
        padding-left: 24px;
        padding-right: 24px;
      }

      .flex-row {
        flex-direction: row;
        gap: 24px;
      }

      .hero-title {
        font-size: 64px;
      }

      .section-title {
        font-size: 64px;
      }

      .benefits-title {
        font-size: 64px;
      }

      .reviews-title {
        font-size: 64px;
      }

      .search-row {
        flex-direction: row;
        align-items: center;
      }

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

      .steps-container {
        flex-direction: row;
        align-items: flex-start;
      }

      .steps-image {
        width: 48%;
      }

      .steps-list {
        width: 52%;
      }

      .reviews-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }

      /* .footer-content {
        flex-direction: row;
        justify-content: space-between;
      } */

      .footer-links {
        flex-direction: row;
        gap: 60px;
      }
    }

    @media (min-width: 768px) {
      .nav-menu {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      
      .mobile-menu-toggle {
        display: none;
      }
      
      .header {
        padding: 10px 12px;
      }
      
      .header-nav {
        gap: 24px;
      }

      .hero-title {
        font-size: 80px;
      }

      .section-title {
        font-size: 80px;
      }

      .benefits-title {
        font-size: 80px;
      }

      .reviews-title {
        font-size: 80px;
      }

      .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-bg-text {
        font-size: 300px;
      }
    }

    @media (min-width: 1024px) {
      .container {
        padding-left: 32px !important;
        padding-right: 32px !important;
      }

      .hero-title {
        font-size: 115px;
      }

      .section-title {
        font-size: 80px;
      }

      .benefits-title {
        font-size: 72px;
      }

      .reviews-title {
        font-size: 77px;
      }

      .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        overflow-x: visible;
      }

      .reviews-slider {
        overflow-x: auto;
        margin-top: 20px;
      }

      .pricing-cards {
        overflow-x: visible;
        justify-content: center;
      }

      .partners-grid {
        overflow: hidden;
        justify-content: flex-start;
        flex-wrap: nowrap;
      }

      .partners-marquee {
        animation: marquee 20s linear infinite;
      }

      .footer-bg-text {
        font-size: 294px;
      }
    }

@media (min-width: 1024px) and (max-width: 1440px) {
  .future-section__dark{
      font-size: 21px;
  }
  .future-section-raflesia-text{
    font-size: 65px;
  }
  .container{
    max-width: 1170px;
  }
  /* .language-name{
    display: none;
  } */
  .lang-switcher{
    /* left: 37px!important; */
  }
  .logo img {
    height: 45px!important;
    width: 80px!important;
  }
  .hero-buttons{
    bottom: 130px!important;
  }
  .search-section{
    padding: 22px;
  }
  .search-icon{
    width: 60px;
    height: 60px;
  }
  .searchInput{
    font-size: 16px;
  }
  .hero-title{
    font-size: 96px;
  }
  .hero-subtitle{
    font-size: 20px;
    max-width: 620px;
  }
  .hero-left-card{
    width: 260px;
  }
  .hero-left-card-inner{
    padding: 24px 22px;
    margin-bottom: 360px;
  }
  .hero-left-card-text{
    margin-top: 150px;
    font-size: 19px;
  }
  .hero-left-card-image{
    width: 240px;
    top: -150px;
  }
  .hero-center-mockup img{
    max-width: 540px;
  }
  .hero-right-card{
    top: 240px;
    width: 260px;
  }
  .hero-right-card .hero-phone{
    transform: scale(0.9);
    transform-origin: top right;
  }
  .hero-buttons{
    bottom: 150px;
  }
  .benefits-carousel-container{
    margin-left: 105px;
    /* margin-right: 40px; */
  }
  .badge-text{
    font-size: 17px;
  }
  .how-it-work-heading{
    font-size: 70px;
    line-height: 70px!important;
  }
  .how-it-work-subtitle{
    font-size: 18px;
  }
  .step-content h3{
    font-size: 20px;
  }
  .step-content p{
    font-size: 16px;
  }
  .how-it-work-buttons{
    margin-top: 155px!important;
  }
  .partner-section-subtitle{
    font-size: 19px;
  }
  .pricing-section-header{
    font-size: 60px;
  }
  .app-section-title{
    font-size: 60px;
  }
  .app-section-subtitle{
    font-size: 19px;
  }
  .pricing-title{
    font-size: 25px;
  }
  .partner-section-title{
    font-size: 70px;
  }
  .benefits-title,
  .benefits-title2{
    font-size: 60px;
  }
  .steps-container{
    gap: 30px;
  }
  .steps-list{
    max-width: 520px;
  }
  .review-card{
    min-width: 420px;
    padding: 60px 40px;
  }
  .pricing-cards{
    gap: 24px;
  }
  .pricing-card,
  .pricing-card2{
    min-width: 340px;
  }
  .pricing-header{
    padding: 0 24px;
  }
  .pricing-features,
  .pricing-cta{
    padding: 0 24px;
  }
  .app-section-background-image{
    top: -210px;
    height: 330px;
  }
  .download-text{
    font-size: 14px!important;
    
  }
  .store-text{
    font-size: 20px!important;
  }
  .app-buttons{
    top: 170px;
  }
  .footer-bg-text{
    font-size: 294px;
  }
  .footer-section h3{
    font-size: 16px;
  }
  .footer-content{
    gap: 356px;
  }
  .footer-links{
    gap: 79px;
  }
  .footer-section a{
    font-size: 15px;
  }
  .search-row{
    gap: 23px;
  }
  .menu{
    gap: 9px!important;
  }
}

    @media (min-width: 1280px) {
      .hero-title {
        font-size: 105px;
      }

    }

    /* Body scroll prevention when menu is open */
    body.menu-open {
      overflow: hidden;
    }

    /* Focus states for accessibility */
    .mobile-menu-toggle:focus {
      /* outline: 2px solid #e50050; */
      outline-offset: 2px;
    }
    

    .nav-menu a:focus {
      outline: 2px solid #e50050;
      outline-offset: 2px;
    }

    .mobile-menu-nav a:focus {
      outline: 2px solid #e50050;
      outline-offset: 2px;
    }

    /* Enhanced mobile responsiveness */
    @media (max-width: 640px) {
      .header {
        
       padding:9px!important;
        margin-bottom: 20px;
      }
      .header-nav .logo{
        width: 60px;
        height: 36px;
      }
      .badge-text{
        font-size: 16px;
      }
      .badge{
        padding: 10px 20px;
        margin-bottom: 5px;
      }
      .hero-title{
        font-size: 41px;
      }
      .hero-subtitle{
        font-size: 16px;
      }
      
      .logo-q {
        font-size: 28px;
      }
      
      .logo-text {
        font-size: 18px;
      }
      
      .star-icon {
        width: 10px;
        height: 10px;
        top: -6px;
        right: -3px;
      }
      
      .mobile-menu {
        width: 280px;
      }
      
      .mobile-menu-content {
        padding: 60px 20px 20px;
      }
      
      .mobile-menu-nav a {
        font-size: 16px;
        padding: 12px 0;
      }
      .service-filter-pills{
        gap: 10px;
        margin-top: 20px;
      }
      .service-filter-pills .filter-pill{
        padding: 10px 22px;
        font-size: 15px;
      }
    }

    /* Utility classes */
    .text-center {
      text-align: center;
    }

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

    .mb-16 {
      margin-bottom: 16px;
    }

    .mb-24 {
      margin-bottom: 24px;
    }

    .mb-32 {
      margin-bottom: 32px;
    }

    .mb-40 {
      margin-bottom: 40px;
    }

    .hidden {
      display: none;
    }

    @media (max-width: 1023px) {
      .desktop-only {
        display: none;
      }
    }

    @media (min-width: 1024px) {
      .mobile-only {
        display: none;
      }
    }

     /* Hero Buttons */
     .hero-buttons {
       position: absolute;
       bottom: 200px;
       left: 50%;
       transform: translateX(-50%);
       display: flex;
       justify-content: center;
       gap: 16px;
       flex-wrap: wrap;
       z-index: 10;
     }

     .app-store-btn {
       background-color: rgba(255, 255, 255, 0.95);
       border-radius: 34px;
       padding: 12px 20px;
       text-decoration: none;
       display: flex;
       align-items: center;
       transition: all 0.3s ease;
       box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
       min-width: 200px;
       justify-content: center;
     }

     .app-store-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
     }

     .app-store-content {
       display: flex;
       align-items: center;
       gap: 12px;
     }

     .apple-logo {
       display: flex;
       align-items: center;
     }

     .app-store-text {
       display: flex;
       flex-direction: column;
       align-items: flex-start;
     }

     .download-text {
       font-size: 16px;
       font-weight: 400;
       color: #333333;
       line-height: 1;
     }

     .store-text {
       font-size: 26px;
       font-weight: 700;
       color: #333333;
       line-height: 1;
     }
