* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: #f5f7fa;
      color: #2c3e50;
      line-height: 1.5;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .cards-container {
      display: flex;
      gap: 30px;
      margin: 40px 0;
    }

    .card {
      flex: 1;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      padding: 40px;
      transition: transform .3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .hotline-card {
      border-top: 4px solid #551fbd;
    }

    .hotline-badge {
      background: #551fbd;
      color: #fff;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 700;
      font-size: 16px;
      display: inline-block;
      margin-bottom: 30px;
    }

    .hotline-number {
      font-size: 32px;
      font-weight: 800;
      color: #2c3e50;
      margin: 20px 0;
      letter-spacing: 1px;
    }

    .hotline-description {
      color: #7f8c8d;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .selector-label {
      font-weight: 700;
      margin: 10px 0 8px;
      color: #2c3e50;
    }

    .select-shell {
      position: relative;
      width: 100%;
    }

    .nice-select {
      width: 100%;
      position: relative;
      background: #ffffff;
      border: 2px solid #c4b5fd;
      border-radius: 18px;
      padding: 14px 18px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      color: #4b5563;
      user-select: none;
      transition: 0.2s;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    }

    .nice-select::after {
      content: "";
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 14px;
      height: 14px;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%237c3aed' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: 100% 100%;
      background-repeat: no-repeat;
      pointer-events: none;
    }

    .nice-options {
      position: absolute;
      top: calc(100% + 6px);
      left: 12px;
      width: calc(100% - 24px);
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      padding: 8px 0;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
      list-style: none;
      margin: 0;
      display: none;
      animation: fadeIn 0.18s ease;
      z-index: 50;
    }

    .nice-select.open .nice-options {
      display: block;
    }

    .nice-options li {
      padding: 12px 18px;
      cursor: pointer;
      font-size: 15px;
      transition: background 0.15s;
    }

    .nice-options li:hover {
      background: #f3e8ff;
      color: #5b21b6;
    }

    .nice-options li:first-child {
      background: #ede9fe;
      color: #5b21b6;
      font-weight: 600;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-4px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .country-details {
      display: none;
      margin-top: 16px;
      background: #f3efff;
      border-left: 4px solid #69e4f5;
      padding: 14px;
      border-radius: 10px;
    }

    .country-name {
      font-size: 18px;
      font-weight: 700;
      margin: 0;
      color: #3e1492;
    }

    .country-number {
      color: #3e1492;
      font-weight: 700;
      font-size: 18px;
      margin: 6px 0;
    }

    .country-disclaimer {
      color: #6b7280;
      font-size: 12px;
      margin-top: 8px;
    }

    .contact-form-card {
      border-top: 4px solid #69e4f5;
    }

    .form-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 30px;
      color: #2c3e50;
    }

    .custom1 {
      color: #010609;
    }

    .custom2 {
      color: #69e4f5;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: #2c3e50;
    }

    .form-input {
      width: 100%;
      padding: 12px 15px;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color .3s;
    }

    .form-input:focus {
      border-color: #551fbd;
      outline: none;
    }

    textarea.form-input {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      background: #551fbd;
      color: #fff;
      border: none;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all .3s;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .submit-btn:hover {
      background: #3e1492;
      transform: translateY(-2px);
    }

    @media (max-width: 600px) {
      .cards-container {
        flex-direction: column;
      }
    }

    @media (max-width: 992px) {
      .hotline-number {
        font-size: 30px !important;
        white-space: nowrap;
      }
    }

    @media (max-width: 600px) {
      .hotline-number {
        font-size: 26px;
        white-space: per-line;
      }
    }

    .phone-row {
      display: grid;
      grid-template-columns: 85px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
    }

    .custom-select {
      position: relative;
      width: 100%;
      min-width: 0;
    }

    .custom-select-trigger {
      position: relative;
      width: 100%;
      height: 48px;
      padding: 10px 40px 10px 12px;
      border-radius: 8px;
      border: 2px solid #e9ecef;
      background: #fff;
      font: inherit;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      appearance: none;
      -webkit-appearance: none;
      outline: none;
    }

    .custom-select.open .custom-select-trigger {
      border-color: #551fbd;
      box-shadow: none;
    }

    .custom-select-trigger::after {
      content: "";
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 7px solid #64748b;
    }

    .custom-select-text {
      flex: 1;
      text-align: left;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .custom-options {
      position: absolute;
      left: 0;
      top: calc(100% + 8px);
      width: 260px;
      max-width: 320px;
      background: #fff;
      border-radius: 14px;
      border: 1px solid #e5e7eb;
      box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
      max-height: 240px;
      overflow-y: auto;
      overflow-x: hidden;
      z-index: 30000;
      display: none;
      padding: 6px;
    }

    .custom-select.open .custom-options {
      display: block;
    }

    .custom-option {
      padding: 10px 12px;
      font-size: 14px;
      color: #111827;
      cursor: pointer;
      border-radius: 10px;
      white-space: nowrap;
    }

    .custom-option:hover {
      background: #f3f4f6;
    }

    .custom-option.is-selected {
      background: #ede9fe;
      color: #4338ca;
      font-weight: 700;
    }

    .native-select-hidden {
      position: absolute;
      left: -99999px;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
    }

    /* ============================
       ✅ OTP POPUP (STYLE ONLY)
       Keep same IDs + JS untouched
       ============================ */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.35);
      display: none;
      /* JS sets flex */
      align-items: center;
      justify-content: center;
      z-index: 50000;
      padding: 14px;
    }

    body.popup-open {
      overflow: hidden;
    }

    .popup-box {
      background: #fff;
      width: 100%;
      max-width: 420px;
      border-radius: 24px;
      padding: 24px 26px 20px;
      box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(226, 232, 240, 0.85);
      text-align: center;
      position: relative;
    }

    .otp-icon-circle {
      width: 64px;
      height: 64px;
      margin: 0 auto;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #eff6ff 0, #dbeafe 35%, #bfdbfe 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .otp-icon-circle span {
      font-size: .82rem;
      font-weight: 800;
      color: #1d4ed8;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .otp-title {
      margin: 12px 0 4px;
      font-size: 1.15rem;
      font-weight: 800;
      color: #111827;
    }

    .otp-sub {
      margin: 0 0 14px;
      font-size: .92rem;
      color: #6b7280;
      line-height: 1.35rem;
    }

    /* override your inline input look */
    #otpCodeInput {
      width: 100% !important;
      padding: 12px 12px !important;
      border: 2px solid #e9ecef !important;
      border-radius: 14px !important;
      background: #f9fafb !important;
      text-align: center !important;
      font-size: 22px !important;
      letter-spacing: .55em !important;
      padding-left: .55em !important;
      outline: none !important;
      height: 52px !important;
      transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    }

    #otpCodeInput:focus {
      border-color: #551fbd !important;
      background: #ffffff !important;
      box-shadow: 0 0 0 2px rgba(85, 31, 189, 0.14) !important;
    }

    .otp-timer-row {
      margin-top: 8px;
      font-size: .82rem;
      color: #94a3b8;
    }

    /* error text still uses #otpError - just style it */
    #otpError {
      margin-top: 10px !important;
      color: #b91c1c !important;
      font-size: .88rem;
      font-weight: 700;
      display: none;
    }

    .otp-actions {
      display: flex;
      gap: 12px;
      justify-content: space-between;
      margin-top: 18px;
    }

    /* make your submit-btn buttons look like the candle modal buttons, but keep class the same */
    .otp-actions .submit-btn {
      width: 50% !important;
      padding: 12px 14px !important;
      border-radius: 999px !important;
      font-size: 15px !important;
      font-weight: 800 !important;
      transform: none !important;
    }

    /* cancel button (inline styles already set background white) */
    #otpCancelBtn {
      box-shadow: none !important;
    }

    /* Toast */
    .toast-wrap {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 10px;
      pointer-events: none;
    }

    .toast-item {
      pointer-events: auto;
      min-width: 260px;
      max-width: 360px;
      padding: 12px 14px;
      border-radius: 12px;
      color: #fff;
      box-shadow: 0 14px 40px rgba(2, 6, 23, 0.22);
      transform: translateY(6px);
      opacity: 0;
      transition: opacity .25s ease, transform .25s ease;
      font-size: 14px;
      font-weight: 700;
    }

    .toast-item.show {
      opacity: 1;
      transform: translateY(0);
    }

    .toast-success {
      background: #16a34a;
    }

    .toast-error {
      background: #dc2626;
    }

    .toast-info {
      background: #551fbd;
    }

    .toast-close {
      float: right;
      cursor: pointer;
      font-weight: 900;
      margin-left: 10px;
      opacity: .95;
    }

    .contact-meta {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    /* 🦴 Skeleton Loader Styles */.skeleton {
  border-radius: 8px;
}
.skeleton-card-inner { height: 100%; width: 100%; border-radius: 12px; }
    .skeleton-field { height: 18px; width: 40%; margin-bottom: 8px; border-radius: 4px; }
    .skeleton-input { height: 48px; width: 100%; margin-bottom: 20px; border-radius: 8px; }

    /* Hide real content initially */
    .content-hidden { 
      display: none !important; 
      opacity: 0; 
    }
    .content-reveal { 
      display: flex !important; 
      animation: fadeIn 0.4s ease forwards; 
    }
    @keyframes fadeIn { 
      from { opacity: 0; transform: translateY(5px); } 
      to { opacity: 1; transform: translateY(0); } 
    }

    .contact-pill {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;

      padding: 12px 16px;
      border-radius: 14px;

      background: #f3efff;
      /* same family as your purple UI */
      border: 1px solid #e9d5ff;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);

      text-decoration: none;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }

    .contact-pill:hover {
      transform: translateY(-1px);
      border-color: #c4b5fd;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
    }

    .pill-label {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .02em;
      color: #5b21b6;
      background: #ede9fe;
      padding: 6px 10px;
      border-radius: 999px;
      white-space: nowrap;
    }

    .pill-value {
      font-size: 14px;
      font-weight: 800;
      color: #111827;
      word-break: break-word;
      text-align: right;
    }

    /* keep layout nice on small screens */
    @media (max-width: 480px) {
      .contact-pill {
        flex-direction: column;
        align-items: flex-start;
      }

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

    .agent-cta {
      margin-top: 18px;
    }

   .agent-btn {
  background: #551fbd;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.agent-btn:hover {
  background: #3e1492;
  transform: translateY(-2px);
}


    .agent-btn i {
      font-size: 16px;
    }

    /* Make left card a vertical flex container */
    .hotline-card {
      display: flex;
      flex-direction: column;
    }

    /* Push Agent button to the bottom */
    .hotline-card .agent-cta {
      margin-top: auto;
      /* this is the key */
      padding-top: 18px;
      /* optional spacing above button */
    }
    /* ✅ Clean responsive contact page */
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }

  .cards-container,
  .content-reveal {
    flex-direction: column !important;
    gap: 24px;
    margin: 24px 0;
  }

  .skeleton-wrapper {
    flex-direction: column !important;
    gap: 24px !important;
    margin: 24px 0 !important;
  }

  .card {
    width: 100%;
    padding: 28px 24px;
  }

  .hotline-number {
    font-size: 28px !important;
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.3;
  }

  .hotline-badge {
    width: 100%;
    text-align: center;
    font-size: 15px;
  }

  .contact-pill {
    flex-direction: row;
  }

  .phone-row {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .custom-options {
    width: 280px;
  }
}

@media (max-width: 600px) {
  .card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .hotline-number {
    font-size: 23px !important;
  }

  .hotline-badge {
    font-size: 13px;
    padding: 10px 14px;
  }

  .contact-pill {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .phone-row {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 8px;
  }

  .form-title {
    font-size: 22px;
  }
}
