  :root {
    --primary-color: #ff7a04;

    --secondary-color: #f0eae0;
    --accent-color: #00ba9a;
    --accent-secondary-color: #5804f6;
    --white-color: #ffffff;
    --base-bg: #f0eae0;
    --accent-blue: #0bc7e0;
    --brand-orange: #ff7a04;
    --text-color: #000000;
    --default-font: 'Montserrat', sans-serif;
    --accent-font: 'Montserrat', sans-serif;


    --theme-color: var(--brand-orange);
    --theme-faint: rgba(255, 122, 4, 0.08);

    --theme-border: rgba(255, 122, 4, 0.2);

  }


  body.theme-1month {
    --theme-color: #00ba9a !important;

    --theme-faint: rgba(0, 186, 154, 0.08) !important;
    --theme-border: rgba(0, 186, 154, 0.2) !important;
  }

  body.theme-3month {
    --theme-color: var(--brand-orange) !important;
    --theme-faint: rgba(255, 122, 4, 0.08) !important;
    --theme-border: rgba(255, 122, 4, 0.2) !important;
  }

  body.theme-6month {
    --theme-color: #5804f6 !important;
    --theme-faint: rgba(88, 4, 246, 0.08) !important;
    --theme-border: rgba(88, 4, 246, 0.2) !important;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: 85px;
    position: relative;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100vh;
  }
  
  html {
    overflow-y: auto !important;
    height: auto !important;
  }

  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(47, 182, 163, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, var(--theme-faint) 0%, transparent 50%),
      radial-gradient(circle at 40% 20%, rgba(31, 182, 230, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(20px);
    }
  }


  body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: radial-gradient(ellipse at 50% 100%, rgba(47, 182, 163, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
  }

  .join-wrapper {
    width: 85%;
    max-width: 700px;
    margin: 45px auto 35px;
    padding: 38px 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAF8 100%);
    border-radius: 30px;
    box-shadow: 0 30px 80px var(--theme-border), 0 10px 30px rgba(47, 182, 163, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--theme-faint);
  }

  .join-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--theme-faint) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }

  .join-wrapper>* {
    position: relative;
    z-index: 1;
  }

.package-summary{
  padding:15px 10px;
  margin-bottom:18px;
  text-align:center;
  border-radius:24px;
  background:linear-gradient(
    180deg,
    rgba(0,186,154,0.12) 0%,
    rgba(255,255,255,0.95) 100%
  );
  border: 1.5px solid var(--theme-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.package-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

/* TITLE */
.package-box h3{
  font-size:20px;
  font-weight:700;
  color:#000;
}



/* PRICE */
.price{
  font-size:38px;
  font-weight:800;
  color:var(--theme-color);
  line-height:1;
}

/* VALIDITY PILL */
.validity {
  margin-top: 5px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  border-radius: 20px;
  background: rgba(0, 186, 154, 0.15);
  border: 1px solid rgba(0, 186, 154, 0.25);
  white-space: nowrap;
}


.join-form h2{
  text-align:center;
  color: var(--theme-color);
  
  margin:5px 0 5px;
  font:1.7rem 'Marcellus',serif;
  font-weight:700;
  letter-spacing:-0.5px;
  position:relative;
  padding-bottom:14px;
}

/* soft divider line */
.join-form h2::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:2px;
  background:linear-gradient(
    90deg,
    transparent,
    var(--theme-color),
    transparent
  );
  border-radius:10px;
  opacity:0.8;
}

  .form-group {
    margin-bottom: 12px;
    position: relative;
  }
.form-group input{
  width:100%;
  padding:13px 10px 10px 14px;
  border:1.5px solid rgba(0,0,0,0.15);
  border-radius:16px;
  font-size:15px;
  font-weight:500;
  color:#222;
  background:linear-gradient(135deg,#fff 0%,#fafaf8 100%);
  transition:all .3s ease;
}

.form-group input:hover{
  border-color:var(--theme-color);
  box-shadow:0 6px 16px var(--theme-faint);
}

.form-group input:focus{
  outline:none;
  border-color:var(--theme-color);
  box-shadow:0 0 0 4px var(--theme-border);
}


  .form-group input::placeholder {
    color: #A89080;
    font-weight: 400;
  }

  .terms {
    display: flex;
    gap: 12px;
    margin:  0;
    padding: 10px 15px;
    background: linear-gradient(135deg, var(--theme-faint) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 18px;
    border: 2px solid var(--theme-border);

    font-size: 13.5px;
    align-items: center;
    color: #4A4A4A;
    position: relative;
    box-shadow: 0 4px 12px var(--theme-faint);
  }

  .terms::before {
    
    position: absolute;
    left: 10px;
    top: 18px;
    color: var(--theme-color);
    font-weight: bold;
    font-size: 18px;
  }

  .terms input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    margin-left: 0px;
    cursor: pointer;
    accent-color: black;
    flex-shrink: 0;
    border-radius: 4px;
  }

  .terms label {
    cursor: pointer;
    line-height: 1.5;
    margin-top: 1px;
    font-weight: 500;
    color: #5E6F6A;
  }

  .payment-box {
    background: radial-gradient(circle, var(--theme-faint) 0%, transparent 70%);
    border-radius: 28px;
    padding: 30px 26px;
    text-align: center;
    margin-top: 10px;
    color: #333;
    box-shadow: 0 15px 45px var(--theme-border);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139, 111, 71, 0.12);
  }

  .payment-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .payment-box::after {
    
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    opacity: 0.9;
  }

  .amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 1;
    color: var(--theme-color);
    text-shadow: 0 2px 4px var(--theme-faint);
  }

  .pay-btn {
    width: 90%;
    padding: 18px 14px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    margin: 10px auto 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 28px var(--theme-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .pay-btn::before {
    
    font-size: 18px;
  }

  .pay-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px var(--theme-border);
    background: linear-gradient(135deg, #9B7E52 0%, var(--theme-color) 100%);
  }

  .pay-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--theme-border);
  }

  .toast {
    position: fixed;
    top: 80px;
    right: -400px;
    min-width: 320px;
    max-width: 90vw;
    padding: 20px 25px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
    font-weight: 500;
    border-left: 5px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    word-wrap: break-word;
  }

  .toast.show {
    right: 20px;
    opacity: 1;
    visibility: visible;
  }


  .floating-container {
    position: fixed !important;
    bottom: 160px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2147483647 !important;
  }

  .floating-button {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
  }

  .floating-button:hover {
    transform: scale(1.1);
  }

  .floating-button img {
    width: 30px;
    height: 30px;
  }

  .floating-button.whatsapp {
    background-color: #25d366;
  }

  .floating-button.whatsapp:hover {
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.4);
  }

  .floating-button.call {
    background-color: #34b7f1;
  }

  .floating-button.call:hover {
    box-shadow: 0 6px 12px rgba(52, 183, 241, 0.4);
  }

  .floating-button.instagram {
    background-color: #e4405f;
  }

  .floating-button.instagram:hover {
    box-shadow: 0 6px 12px rgba(228, 64, 95, 0.4);
  }


  .floating-button.refer {
    background-color: #6c5ce7;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .floating-button.refer:hover {
    box-shadow: 0 6px 12px rgba(108, 92, 231, 0.4);
  }

  .floating-button.refer i {
    color: #fff;
    font-size: 18px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  @keyframes float-pulse {

    0%,
    100% {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    50% {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
  }

  @media (max-width: 768px) {
    .floating-container {
      bottom: 100px;
      right: 15px;
    }

    .floating-button {
      width: 38px;
      height: 38px;
    }

    .floating-button img {
      width: 25px;
      height: 25px;
    }
  }

  @media (max-width: 1024px) {
    .main-menu ul {
      gap: 25px;
    }

    .header-right {
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    body {
      padding-top: 85px;
    }

    .hamburger {
      display: flex;
    }

    .main-menu,
    .header-call,
    .btn-header {
      display: none;
    }

    .header-right-wrapper {
      gap: 10px;
    }

    .header-user-icon {
      width: 36px;
      height: 36px;
      font-size: 18px;
    }

    .floating-container {
      bottom: 100px;
      right: 15px;
    }

    .floating-button {
      width: 38px;
      height: 38px;
    }

    .floating-button img {
      width: 25px;
      height: 25px;
    }

    .floating-button.refer i {
      font-size: 16px;
      width: 25px;
      height: 25px;
    }

    .join-wrapper {
      width: 92%;
      margin: 30px auto;
      padding: 22px 20px;
    }

    .price {
      font-size: 20px;
    }

    .amount {
      font-size: 20px;
    }

    .pay-btn {
      padding: 16px;
      font-size: 14px;
    }

    .package-summary {
      padding: 18px 15px;
    }
  }

  @media (max-width: 480px) {
    .main-header {
      height: 80px;
    }

    .container {
      height: 80px;
      padding: 0 15px;
    }

    .header-logo img {
      width: 40px;
      height: 40px;
    }

    .header-logo span {
      font-size: 18px;
    }

    .header-user-icon {
      width: 34px;
      height: 34px;
      font-size: 16px;
    }

    .mobile-menu {
      width: 280px;
      right: -320px;
    }

    .join-wrapper {
      width: 94%;
      margin: 40px auto;
      padding: 20px 16px;
    }

    .join-form h2 {
      font-size: 1.5rem;
      margin-bottom: 18px;
    }

    .form-group input {
      padding: 13px 16px;
      font-size: 14px;
    }

    .price {
      font-size: 20px;
      margin-top: 0px;
    }

    .amount {
      font-size: 24px;
      margin-bottom: 16px;
    }

    .pay-btn {
      padding: 16px;
      font-size: 13px;
      letter-spacing: 0.5px;
    }

    .package-summary {
      padding: 5px 5px;
      margin-bottom: 20px;
    }

    .package-box h3 {
      font-size: 1.3rem;
    }

    .terms {
      margin: 20px 0;
      padding: 14px 16px;
      font-size: 13px;
    }

    .terms input[type="checkbox"] {
      width: 18px;
      height: 18px;
    }
  }

  .clear-ref-btn:hover {
    color: var(--primary-color) !important;
  }

  .form-group input#refCode {
    padding-right: 45px;
  }




  .decorative-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }


  .lotus {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.08;
    background: radial-gradient(circle, var(--theme-color) 0%, transparent 70%);
    border-radius: 50%;
    filter: drop-shadow(0 0 30px var(--theme-border));
  }

  .lotus-1 {
    top: -40px;
    left: -40px;
    animation: float-slow 15s ease-in-out infinite;
  }


  .circle {
    position: absolute;
    border: 2px solid rgba(47, 182, 163, 0.08);
    border-radius: 50%;
  }

  .circle-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 5%;
    animation: rotate 30s linear infinite;
  }


  .accent {
    position: absolute;
    background: radial-gradient(circle, rgba(31, 182, 230, 0.06) 0%, transparent 70%);
    border-radius: 50%;
  }

  .accent-1 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: -80px;
    animation: pulse-soft 8s ease-in-out infinite;
  }


  .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,0 600,60 T1200,60 L1200,120 L0,120 Z" fill="rgba(139,111,71,0.03)"/></svg>') repeat-x;
    background-size: 600px 120px;
    animation: wave-move 20s linear infinite;
  }

  @keyframes wave-move {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(600px);
    }
  }


  .float-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 182, 163, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .float-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation: float-movement-1 15s ease-in-out infinite;
  }

  .float-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 50%;
    transform: translateX(50%);
    animation: float-movement-2 18s ease-in-out infinite;
  }

  .float-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation: float-movement-3 20s ease-in-out infinite;
  }

  @keyframes float-slow {

    0%,
    100% {
      transform: translateY(0px) scale(1);
    }

    50% {
      transform: translateY(30px) scale(1.05);
    }
  }

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes pulse-soft {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.1);
    }
  }

  @keyframes float-movement-1 {

    0%,
    100% {
      transform: translateX(-50%) translate(0, 0);
    }

    25% {
      transform: translateX(-50%) translate(30px, -20px);
    }

    50% {
      transform: translateX(-50%) translate(0, 40px);
    }

    75% {
      transform: translateX(-50%) translate(-30px, -10px);
    }
  }

  @keyframes float-movement-2 {

    0%,
    100% {
      transform: translateX(50%) translate(0, 0);
    }

    25% {
      transform: translateX(50%) translate(-25px, 30px);
    }

    50% {
      transform: translateX(50%) translate(25px, -15px);
    }

    75% {
      transform: translateX(50%) translate(-15px, -25px);
    }
  }

  @keyframes float-movement-3 {

    0%,
    100% {
      transform: translateX(-50%) translate(0, 0);
    }

    25% {
      transform: translateX(-50%) translate(20px, -25px);
    }

    50% {
      transform: translateX(-50%) translate(-20px, 35px);
    }

    75% {
      transform: translateX(-50%) translate(30px, 15px);
    }
  }