:root {
  --primary_pw: #323b43;
  --secondary_pw: #323b43;
  --accent_pw: #323b43;
  --green_pw: #25d366;
  --blue_pw: #2563eb;
  --bg_pw: #f6f7fb;
  --card_pw: #ffffff;
  --border_pw: #b0b8be;
  --text_pw: #111827;
  --muted_pw: #6b7280;
  --radius_pw: 16px;
}
.master-section {
  
  /* ================= BASE ================= */
  .ion-widget {
    max-width: 1100px;
    margin: 40px auto;
    padding: 22px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--primary_pw);
    border-radius: var(--radius_pw);
    color: var(--text_pw);
  }
  /* ================= HEADER ================= */
  .ion-header {
    text-align: center;
    margin-bottom: 20px;
  }
  .ion-header .title,.ion-header h2 {
    font-size: 30px;
    font-weight: 750;
    letter-spacing: -0.5px;
  }
  .ion-header .subtitle {
    font-size: 14px;
    color: var(--muted_pw);
    margin-top: 4px;
  }
  /* ================= TABS (SEGMENTED CONTROL) ================= */
  .ion-tabs {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
    background: #fff;
    padding: 6px;
    border-radius: 999px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
  .ion-tabs button {
    border: none;
    background: transparent;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: var(--secondary_pw);
    transition: all 0.2s ease;
  }
  .ion-tabs button:hover {
    color: var(--primary_pw);
  }
  .ion-tabs .active {
    background: var(--primary_pw);
    color: #fff;
  }
  /* ================= GRID ================= */
  .ion-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
  }
  /* ================= FORM PANEL ================= */
  .ion-form {
    background: var(--card_pw);
    padding: 22px;
    border-radius: var(--radius_pw);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  }
  /* ================= LABELS ================= */
  .label {
    font-weight: 650;
    display: block;
    margin: 12px 0 6px;
  }
  /* ================= INPUTS ================= */
  input,
  select,
  textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--border_pw);
    /* border-radius: 12px; */
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
    background: #fff;
  }
  input:focus,
  select:focus,
  textarea:focus {
    border-color: var(--primary_pw);
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
  }
  /* ================= VEHICLE GRID ================= */
  .vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
  }
  /* ================= VEHICLE CARD ================= */
  .vehicle-card {
    background: #fff;
    border: 1px solid var(--border_pw);
    border-radius: 12px;
    padding: 10px 8px;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    gap: 2px;
  }
  .vehicle-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary_pw);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  }
  .vehicle-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--primary_pw);
  }
  /* subtitle */
  .vehicle-card p {
    font-size: 11px;
    margin: 0;
    color: var(--muted_pw);
    line-height: 1.2;
  }
  /* ACTIVE STATE */
  .vehicle-card.active {
    background: var(--primary_pw);
    border-color: var(--primary_pw);
    color: #fff;
    transform: scale(1.02);
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.18);
  }
  .vehicle-card.active h4,
  .vehicle-card.active p {
    color: #fff;
  }
  /* check badge */
  .vehicle-card.active::after {
    content: "✓";
    position: absolute;
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    background: #25d366;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  /* ================= FORM SECTIONS ================= */
  .form-section {
    margin-top: 16px;
  }
  .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  /* ================= ROUND TRIP ================= */
  .round-trip {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: var(--secondary_pw);
  }
  /* ================= SUMMARY ================= */
  .ion-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  /* PRICE CARD */
  .price-card {
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    padding: 22px;
    border-radius: var(--radius_pw);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid var(--border_pw);
  }
  .price-card h3 {
    font-size: 14px;
    color: var(--muted_pw);
  }
  .price {
    font-size: 38px;
    font-weight: 800;
    color: var(--green_pw);
    margin: 10px 0;
  }
  .price-card ul {
    list-style: none;
    padding: 0;
    font-size: 13px;
    color: var(--muted_pw);
  }
  .price-card li {
    margin: 6px 0;
  }
  /* ================= CTA ================= */
  .cta-box {
    background: #fff;
    padding: 16px;
    border-radius: var(--radius_pw);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }
  .btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
    margin-top: 10px;
  }
  .btn:hover {
    transform: translateY(-2px);
  }
  .btn.whatsapp {
    background: var(--green_pw);
    color: #fff;
  }
  .btn.email {
    background: var(--blue_pw);
    color: #fff;
  }
  .btn.primary {
    background: var(--primary_pw);
    color: #fff;
  }
  .btn.secondary {
    background: #e5e7eb;
    color: #111;
  }
  /* ================= TOUR BOX ================= */
  .tour-box {
    text-align: center;
    padding: 20px;
    border: 1px dashed var(--border_pw);
    border-radius: var(--radius_pw);
    background: #fff;
  }
  /* ================= RESPONSIVE ================= */
  @media (max-width: 900px) {
    .ion-grid {
      grid-template-columns: 1fr;
    }
    .vehicle-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 600px) {
    .vehicle-grid {
      grid-template-columns: 1fr;
    }
    .grid-2 {
      grid-template-columns: 1fr;
    }
    .ion-widget {
      margin: 10px;
      padding: 12px;
    }
  }
  /* ================= MICRO INTERACTIONS ================= */
  .vehicle-card,
  .btn,
  .ion-tabs button {
    transition: all 0.2s ease-in-out;
  }
  /* ================= ROUND TRIP CARD ================= */
  .round-trip-box {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    transition: all 0.2s ease;
  }
  .round-trip-box:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
  }
  .round-trip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .rt-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
  }
  .rt-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
  }
  /* ================= SWITCH TOGGLE ================= */
  .switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
  }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 999px;
  }
  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  .switch input:checked + .slider {
    background-color: #111827;
  }
  .switch input:checked + .slider:before {
    transform: translateX(20px);
  }
  /* ================= CTA GROUP ================= */
  .cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  /* ================= BASE BUTTON ================= */
  .btn {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
  }
  /* ================= PRIMARY (WHATSAPP) ================= */
  .btn-primary {
    background: #111827;
    color: #fff;
  }
  .btn-primary:hover {
    background: #0b1220;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(17, 24, 39, 0.15);
  }
  /* ================= SECONDARY (EMAIL) ================= */
  .btn-secondary {
    background: #f3f4f6;
    color: #111827;
    border: 1px solid #e5e7eb;
  }
  .btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
  }
  /* ================= OPTIONAL ICON FEEL ================= */
  .btn::before {
    margin-right: 6px;
  }
  .btn.whatsapp {
    background: #25d366;
    color: #fff;
  }
  .btn.whatsapp:hover {
    background: #1ebe5d;
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
  }
  /* ================= EMAIL (STANDARD ACTION BLUE) ================= */
  .btn.email {
    background: #2563eb;
    color: #fff;
  }
  .btn.email:hover {
    background: #1d4ed8;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
  }
  .ion-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
  }
  /* TAB BUTTONS */
  .ion-tabs button {
    border: 1px solid var(--border_pw);
    background: #fff;
    padding: 14px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--secondary_pw);
    text-align: center;
  }
  /* HOVER */
  .ion-tabs button:hover {
    border-color: var(--primary_pw);
    color: var(--primary_pw);
    transform: translateY(-1px);
  }
  /* ACTIVE STATE */
  .ion-tabs .active,
  .ion-tabs .active:hover {
    background: var(--primary_pw);
    color: #fff;
    border-color: var(--primary_pw);
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.15);
  }
  @media (max-width: 600px) {
    .ion-tabs {
      grid-template-columns: 1fr;
    }
    .ion-tabs button {
      text-align: left;
      padding: 14px 16px;
    }
  }
  /*  DATE AND TIME  */
  .ion-date input[type="date"] {
    width: 100%;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid var(--border_pw);
    background: #fff;
    font-size: 14px;
  }
  .ion-date input[readonly] {
    margin-top: 8px;
    background: #f9fafb;
    color: var(--muted_pw);
  }
  .ion-time select {
    width: 100%;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid var(--border_pw);
    background: #fff;
    font-size: 14px;
  }
  #originalPrice {
    margin-top: 10px;
    font-size: 20px;
    text-decoration: line-through;
    color: var(--primary_pw);
  }
  .vehicle-preview {
    text-align: center;
    margin: 20px 0 30px;
  }
  .vehicle-preview img {
    width: 260px;
    max-width: 100%;
    height: auto;
  }
  .vehicle-name {
    margin-top: 10px;
    font-weight: 600;
    font-size: 18px;
  }
  /* ================= MODAL ================= */
  .ion-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    overflow-y: auto;
  }
  .ion-modal.show {
    display: flex;
  }
  .ion-modal-box {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    margin: auto;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    animation: ionModal 0.25s ease;
  }
  @keyframes ionModal {
    from {
      opacity: 0;
      transform: translateY(25px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  .ion-modal-close {
    position: absolute;
    top: 25px;
            padding: 15px;
        right: 25px;
        width: 25px;
        height: 15px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
  }
  .ion-modal-close:hover {
    background: var(--primary_pw);
    color: var(--bg_pw);
    transform: scale(1.05);
  }
  .ion-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
  }
  .ion-modal-header h2 {
    font-size: 20px;
    margin: 0;
    font-weight: 700;
    color: var(--primary_pw);
  }
  .ion-modal-body {
    padding: 20px 0;
  }
  .ion-modal-footer {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    justify-content: flex-end;
  }
  /* 
  .ion-modal-close {
    background: #f3f4f6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
  } */
  .ion-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    margin: 12px 0;
    display: none;
    animation: fadeIn 0.2s ease;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-4px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* ================= MODAL BACKDROP ================= */
  .ion-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  .ion-modal.show {
    display: flex;
  }
  /* ================= MODAL BOX ================= */
 /* .ion-modal-box {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popIn 0.2s ease;
  }*/
  @keyframes popIn {
    from {
      transform: scale(0.95);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  /* ================= TOAST ================= */
  .ion-modal-toast {
    position: relative;
    top: 15px;
    min-width: 100%;
    max-width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    display: none;
    z-index: 10000;
    animation: slideDown 0.25s ease;
  }
  @keyframes slideDown {
    from {
      transform: translate(-50%, -10px);
      opacity: 0;
    }
    to {
      transform: translate(-50%, 0);
      opacity: 1;
    }
  }
  /*  NEW Modal  */
  .ion-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 15px;
  }
  .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
  }
  .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .form-group.full {
    flex: 100%;
  }
  .form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
  }
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  }
  .form-group textarea {
    min-height: 80px;
    resize: vertical;
  }
  /* Mobile */
  @media (max-width: 600px) {
    .form-row {
      flex-direction: column;
    }
  }
  /* SUCCESS */
  .ion-toast-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #16a34a;
  }
  /* ERROR */
  .ion-toast-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
  }
  /* MOBILE */
  @media (max-width: 600px) {
    .ion-modal-box {
      max-width: 95%;
      margin: 10px;
    }
  }
  .ion-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
  }
  .ion-modal.show {
    display: flex;
  }
  /*.ion-modal-box {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
  }*/
  /* ================= MODAL FORM ================= */
  .ion-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
  }
  .form-group label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #374151;
  }
  .form-group input,
  .form-group textarea {
    padding: 12px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
  }
  .form-group textarea {
    min-height: 90px;
    resize: vertical;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  }
  .form-group.full {
    grid-column: span 2;
  }
  /* jQuery Validate error */
  label.error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 5px;
  }
  input.error,
  textarea.error {
    border-color: #ef4444;
    background: #fff5f5;
  }
  /* ================= MODAL INPUT UX IMPROVEMENT (NO STRUCTURE CHANGE) ================= */
  .ion-modal-body input,
  .ion-modal-body textarea,
  .ion-modal-body select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
    transition: all 0.2s ease;
  }
  .ion-modal-body input:focus,
  .ion-modal-body textarea:focus,
  .ion-modal-body select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
  }
  /* spacing between fields */
  .ion-modal-body .grid-2 {
    gap: 14px;
  }
  /* better textarea spacing */
  .ion-modal-body textarea {
    min-height: 90px;
    resize: vertical;
  }
  /* labels styling (if not already strong enough) */
  .ion-modal-body label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin: 8px 0 6px;
    color: #374151;
  }
  /* input error state (jQuery validate) */
  .ion-modal-body input.error,
  .ion-modal-body textarea.error {
    border-color: #ef4444 !important;
    background: #fff5f5;
  }
  /* error label styling */
  label.error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    display: block;
  }
  /* toast enhancement */
  .ion-toast-success {
    background: #dcfce7;
    border: 1px solid #16a34a;
    color: #166534;
  }
  .ion-toast-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* ================= REQUIRED FIELD UI ================= */
  .form-group label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: #374151;
  }
  .form-group label span {
    font-size: 11px;
  }
  /* better spacing between rows */
  /* .form-row {
    margin-bottom: 10px;
  } */
  /* optional field style */
  .form-group textarea {
    min-height: 90px;
  }
  /* error state (jQuery validate) */
  input.error,
  textarea.error {
    border-color: #ef4444 !important;
    background: #fff5f5;
  }
  /* error message */
  label.error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
  }
  .form-group {
    position: relative;
  }
  .ion-input-error {
    border: 1px solid #ef4444 !important;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
  }
  .form-group.has-error label {
    color: #ef4444;
  }
  /* error text */
  .ion-error-text {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    display: block;
  }
  /* optional animation */
  .ion-error-text {
    animation: fadeIn 0.2s ease-in;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-3px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .vehicle-card img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
  }
  
  
  
  .send-options{
    display:flex;
    gap:12px;
    margin-top:8px;
}

.send-option{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center !important;
    gap:10px;
    padding:14px 18px;
    border:2px solid #d1d5db;
    border-radius:12px;
    cursor:pointer;
    background:#fff;
    transition:.25s;
    font-weight:600;
    color:#374151;
    user-select:none;
    
}

.send-option input{
    display:none;
}

.send-option i{
    font-size:20px;
}

.send-option .fa-whatsapp{
    color:#25D366;
}

.send-option .fa-envelope{
    color:#2563eb;
}

.send-option:hover{
    border-color:var(--primary_pw);
    transform:translateY(-1px);
}

.send-option:has(input:checked){
    background:var(--primary_pw);
    color:#fff;
    border-color:var(--primary_pw);
}

.send-option:has(input:checked) .fa-whatsapp,
.send-option:has(input:checked) .fa-envelope{
    color:#fff;
}

.send-option.active{
    background:var(--primary_pw);
    border-color:var(--primary_pw);
    color:#fff;
}

.send-option.active .fa-whatsapp,
.send-option.active .fa-envelope{
    color:#fff;
}

.policy-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
}

