/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 26 2025 | 18:11:14 */
  * {
    --sgcr_font_family_primary: 'IBMPlexSans', sans-serif;
  }

  body {
    font-family: var(--sgcr_font_family_primary);
    background: #ffffff;
    color: #114669;
    line-height: 1.6;
    min-height: 100vh;
    padding: 40px 20px;
  }

  .quote-builder-container {
    max-width: 1450px;
    margin: 0 auto;
    background: rgba(220, 235, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4px;
    border: 1px solid rgba(17, 70, 105, 0.15);
    box-shadow: 0 25px 50px -12px rgba(17, 70, 105, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .quote-header {
    background: #114669;
    color: #ffffff;
    padding: 40px;
    text-align: center;
    position: relative;
  }

  .quote-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  }

  .quote-header h2 {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .quote-body {
    padding: 40px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .quote-body>label {
    font-weight: 600;
    font-size: 16px;
    color: #114669;
    margin-bottom: -9px;
    display: block;
  }

  .quote-body input[type="text"],
  .quote-body input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8ecf0;
    border-radius: 4px;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    margin-bottom: 16px;
  }

  .quote-body input[type="text"]:focus,
  .quote-body input[type="email"]:focus {
    outline: none;
    border-color: #114669;
    box-shadow: 0 0 0 3px rgba(17, 70, 105, 0.1);
    transform: translateY(-1px);
  }

  .quote-body textarea {
    min-height: 120px;
    padding: 14px 16px;
    border: 2px solid #e8ecf0;
    border-radius: 4px;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    resize: vertical;
    line-height: 1.5;
  }

  .quote-body textarea:focus {
    outline: none;
    border-color: #114669;
    box-shadow: 0 0 0 3px rgba(17, 70, 105, 0.1);
    transform: translateY(-1px);
  }

  .package-service {
    display: flex;
    gap: 5px;
    position: relative;
    width: 100%;
    padding-bottom: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 5px;
    margin: 10px 0px;
    text-decoration: none;
  }

  .package-service:hover {
    background-color: rgba(17, 70, 105, 0.02);
    transform: translateX(4px);
    z-index: 10000;
  }

  .main-package-section {
    flex-direction: column;
  }

  .service-icon {
    flex-shrink: 0;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 14px;
  }

  .service-content {
    padding-top: 2px;
    flex: 1;
  }

  .service-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1.5;
    margin: 0 0 0px 0;
    position: relative;
    padding-right: 24px;
  }

  .service-content p {
    position: relative;
    font-size: 14px;
    color: #144669;
    pointer-events: none;
  }

  .alacarte-price {
    font-size: 15px;
    font-weight: 600;
    color: #114669;
    margin-top: 4px;
  }

  .radio-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .radio-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #ffffff;
    border: 2px solid #e8ecf0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #4b5563;
    min-width: 140px;
    justify-content: center;
  }

  .radio-row label:hover {
    border-color: #114669;
    background: rgba(17, 70, 105, 0.05);
    transform: translateY(-1px);
  }

  .radio-row input[type="radio"]:checked+label,
  .radio-row label:has(input[type="radio"]:checked) {
    border-color: #114669;
    background: rgba(17, 70, 105, 0.1);
    color: #114669;
    font-weight: 600;
  }

  .radio-row input[type="radio"] {
    accent-color: #114669;
    width: 18px;
    height: 18px;
  }

  .dropdown-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    justify-content: flex-start;
  }

  /* À La Carte Services Styling */
  .alacarte-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(17, 70, 105, 0.03);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 0 0 0;
  }

  .alacarte-category-header:hover {
    background: rgba(17, 70, 105, 0.12);
    transform: translateX(2px);
  }

  .alacarte-category-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
  }

  .alacarte-arrow {
    font-size: 14px;
    color: #114669;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .alacarte-category-header.collapsed .alacarte-arrow {
    transform: rotate(-180deg);
  }

  .alacarte-category-content {
    transition: all 0.3s ease;
  }

  .alacarte-category-content.hidden {
    display: none;
  }

  .alacarte-original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
  }

  .alacarte-price {
    font-size: 16px;
    font-weight: 700;
    color: #114669;
  }

  .alacarte-discount-price {
    font-size: 16px;
    font-weight: 700;
    color: #059669;
  }

  .alacarte-service-option {
    flex-shrink: 0;
  }

  .alacarte-service-option input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
  }

  /* Mobile responsive for À La Carte */
  @media (max-width: 768px) {
    .alacarte-service-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .alacarte-service-pricing {
      width: 100%;
      justify-content: space-between;
    }

    .alacarte-service-option {
      align-self: flex-end;
    }
  }

  /* Specific styling for monthly plan dropdown */
  #monthlySelectionHeader .dropdown-row {
    justify-content: center;
  }

  #monthlySelectionHeader p {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: #114669;
    margin-bottom: 16px;
  }

  .dropdown-row select {
    padding: 12px 16px;
    background: #ffffff;
    border: 2px solid #e8ecf0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #4b5563;
    font-size: 16px;
    min-width: 200px;
  }

  .dropdown-row select:hover {
    border-color: #114669;
    background: rgba(17, 70, 105, 0.05);
    transform: translateY(-1px);
  }

  .dropdown-row select:focus {
    outline: none;
    border-color: #114669;
    background: rgba(17, 70, 105, 0.1);
    color: #114669;
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(17, 70, 105, 0.1);
  }

  .quote-body>p {
    font-weight: 600;
    font-size: 16px;
    color: #114669;
    margin-bottom: 12px;
    display: block;
  }

  .quote-section {
    display: none;
    width: 100%;
    padding: 24px;
    background: rgba(220, 235, 255, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(17, 70, 105, 0.1);
    margin-bottom: 16px;
  }

  .quote-section.active {
    display: block;
    animation: fadeIn 0.4s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .quote-section>p {
    font-weight: 600;
    color: #114669;
    margin-bottom: 6px;
    font-size: 18px;
  }

  #alacarteServicesSection {
    align-self: center;
  }

  .service-option label {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
    background: #ffffff;
    border: 2px solid #e8ecf0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #4b5563;
  }

  .service-option label:hover {
    border-color: #114669;
    background: rgba(17, 70, 105, 0.05);
    transform: translateY(-1px);
  }

  .service-option input[type="checkbox"]:checked+label,
  .service-option label:has(input[type="checkbox"]:checked) {
    border-color: #114669;
    background: rgba(17, 70, 105, 0.1);
    color: #114669;
    font-weight: 600;
  }

  .service-option input[type="checkbox"] {
    accent-color: #114669;
    width: 18px;
    height: 18px;
  }

  .package-service input[type="checkbox"]:checked+label,
  .package-service label:has(input[type="checkbox"]:checked) {
    border-color: #114669;
    background: rgba(17, 70, 105, 0.1);
    color: #114669;
    font-weight: 600;
  }

  .package-service input[type="checkbox"] {
    accent-color: #114669;
    margin: 16px;
    width: 32px;
    height: 32px;
  }

  .package-service input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-46%, -52%);
    color: white;
    font-size: 22px;
    font-weight: bold;
  }

  .quote-section button {
    margin-top: 16px;
    padding: 10px 20px;
    background: #114669;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
  }

  .quote-section button:hover {
    background: #0d3a52;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(17, 70, 105, 0.3);
  }

  .total-price {
    font-weight: 700;
    font-size: 24px;
    color: #114669;
    padding: 20px;
    text-align: right;
    margin: 4px 0;
    transition: all 0.3s ease;
    flex: 1;
  }

  #totalPrice {
    align-self: end;
  }

  /* Pricing Wrapper - Two Column Layout */
  .pricing-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(17, 70, 105, 0.05);
    border-radius: 4px;
    border: 2px solid rgba(17, 70, 105, 0.1);
    margin: 20px 0;
  }

  /* Discount Code Section */
  .discount-code-section {
    flex: 0 0 280px;
    padding: 20px;
  }

  .discount-code-section h3 {
    color: #114669;
    font-size: 18px;
    margin: 0 0 15px 0;
    font-weight: 600;
  }

  .discount-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }

  #discountCodeInput {
    flex: 1;
    padding: 10px 12px;
    margin-bottom: 0px;
    border: 2px solid rgba(17, 70, 105, 0.2);
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
  }

  #discountCodeInput:focus {
    outline: none;
    border-color: #114669;
    background: #fff;
  }

  .monthly-plan-btn-container {
    display: flex;
    justify-content: center;
    margin-top: auto;
  }

  .monthly-plan-btn {
    padding: 10px 20px;
    margin-top: 10px;
    background: #ffffff;
    color: #114669;
    box-shadow: 0 4px 12px rgba(17, 70, 105, 0.3);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .ss-plan-card.selected .monthly-plan-btn {
    background: #114669;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(17, 70, 105, 0.3);
  }

  .apply-discount-btn {
    padding: 10px 20px;
    background: #114669;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .apply-discount-btn:hover {
    background: #0d3a52;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(17, 70, 105, 0.3);
  }

  .apply-discount-btn:active {
    transform: translateY(0);
  }

  .discount-message {
    font-size: 13px;
    margin-top: 8px;
    min-height: 20px;
    transition: all 0.3s ease;
  }

  .discount-message.success {
    color: #27ae60;
    font-weight: 600;
  }

  .discount-message.error {
    color: #e74c3c;
    font-weight: 600;
  }

  .applied-discounts-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  .applied-discount-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 8px;
    width: 50%;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: 4px;
    color: #27ae60;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .remove-discount-btn {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 2px 6px;
    margin-left: 8px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    flex-shrink: 0;
  }

  .remove-discount-btn:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
  }

  .remove-discount-btn:active {
    transform: scale(0.95);
  }

  .total-price #subTotal,
  .total-price #discount {
    font-size: 16px;
    margin: 4px 0;
  }

  .total-price #monthlyCommitment {
    font-size: 18px;
    margin: 4px 0;
    color: #27ae60;
    font-weight: 600;
  }

  .sticky-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 400px;
    width: calc(100% - 40px);
    box-shadow: 0 8px 32px rgba(17, 70, 105, 0.25);
    border: 2px solid #114669;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(100px);
  }

  .sticky-total.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    background: rgba(17, 70, 105, 0.9);
    color: #FFFFFF;
  }

  .sticky-total.in-place {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    max-width: none;
    width: auto;
    box-shadow: 0 8px 32px rgba(17, 70, 105, 0.25);
    border: 2px solid rgba(17, 70, 105, 0.1);
    opacity: 1;
    visibility: visible;
  }

  .terms {
    font-size: 14px;
    max-height: 150px;
    overflow-y: auto;
    padding: 16px;
    border: 2px solid #e8ecf0;
    border-radius: 4px;
    margin-bottom: 16px;
    background: #ffffff;
    line-height: 1.5;
    color: #4b5563;
  }

  .terms::-webkit-scrollbar {
    width: 8px;
  }

  .terms::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
  }

  .terms::-webkit-scrollbar-thumb {
    background: #114669;
    border-radius: 4px;
  }

  #achFields,
  #ccFields {
    padding: 20px;
    background: rgba(220, 235, 255, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(17, 70, 105, 0.1);
    margin-top: 16px;
  }

  #customerEmailSection {
    padding: 24px;
    background: rgba(17, 70, 105, 0.05);
    border: 2px solid rgba(17, 70, 105, 0.2);
    border-radius: 4px;
    margin-top: 20px;
  }

  .quote-footer {
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid #e8ecf0;
  }

  .quote-footer button {
    width: 100%;
    padding: 16px 24px;
    font-weight: 700;
    background: #114669;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(17, 70, 105, 0.3);
  }

  .quote-footer button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 70, 105, 0.4);
  }

  .quote-footer button:active {
    transform: translateY(0);
  }

  .save-exit-btn {
    text-align: center;
    margin-top: 16px;
  }

  .save-exit-btn button {
    background: rgba(255, 255, 255, 0.05);
    color: #114669;
    border: 1px solid rgba(17, 70, 105, 0.2);
    font-size: 14px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(17, 70, 105, 0.1);
    text-decoration: none;
  }

  .save-exit-btn button:hover {
    color: #0d3a52;
    background: rgba(185, 185, 185, 0.1);
    border-color: rgba(17, 70, 105, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(17, 70, 105, 0.2);
  }

  .hidden {
    display: none !important;
  }

  /* Checkbox and Radio Custom Styling */
  input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
  }

  input[type="checkbox"]:checked {
    background: #114669;
    border-color: #114669;
  }

  input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
  }

  input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
  }

  input[type="radio"]:checked {
    border-color: #114669;
  }

  input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #114669;
    border-radius: 50%;
  }

  /* Small text styling */
  small {
    color: #6b7280;
    font-size: 12px;
    font-style: italic;
    margin-top: 4px;
    display: block;
  }

  /* Support & Success Plans Styling */
  #ssPlanSection {
    background: rgba(220, 235, 255, 0.5);
    border: 4px solid rgba(17, 70, 105, 0.2);
    border-radius: 8px;
    padding: 32px;
  }

  #ssPlanSection>p {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
  }

  /* Plan Selection Buttons */
  .ss-plan-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }

  .ss-plan-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #e8ecf0;
    background: #ffffff;
    color: #4b5563;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
  }

  .ss-plan-btn:hover {
    border-color: #114669;
    background: rgba(17, 70, 105, 0.05);
    color: #114669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 70, 105, 0.15);
  }

  .ss-plan-btn.active {
    background: #114669;
    color: #ffffff;
    border-color: #114669;
    box-shadow: 0 4px 16px rgba(17, 70, 105, 0.3);
  }

  .ss-plan-btn.active:hover {
    background: #0d3a52;
    border-color: #0d3a52;
    transform: translateY(-2px);
  }

  /* Hide S&S plan buttons on desktop */
  .ss-plan-buttons {
    display: none;
  }

  .ss-plans-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
  }

  .ss-plan-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 4px solid;
    border-color: var(--sgcr-plan-color);
    flex: 1;
    min-width: 280px;
    max-width: 361px;
    min-height: 530px;
    height: fit-content;
    margin: 45px 20px;
    display: flex;
    flex-direction: column;
    --sgcr-plan-color: #114669;
  }

  .ss-plan-card.active-plan {
    animation: fadeInScale 0.4s ease;
  }

  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.95);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .silver-plan {
    --sgcr-plan-color: #C0C0C0;
  }

  .gold-plan {
    --sgcr-plan-color: #cfa603;
  }

  .platinum-plan {
    --sgcr-plan-color: #E5E4E2;
  }

  .most-popular-plan {
    max-width: 408px;
    border-width: 7px;
    border-color: #144669;
    min-height: 645px;
    height: fit-content;
    margin: 15px;
  }

  .plan-expanded {
    width: 80%;
    max-width: 80%;
  }

  .ss-plan-card::after {
    content: "";
    position: absolute;
    top: -46px;
    right: -48px;
    width: 84px;
    height: 84px;
    background: #114669;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: pulse 2s infinite ease-in-out;
    z-index: 1;
  }

  .ss-plan-card::before {
    content: "";
    position: absolute;
    top: -42px;
    right: -44px;
    width: 74px;
    height: 74px;
    background: var(--sgcr-plan-color);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: pulse 2s infinite ease-in-out;
    z-index: 2;
  }


  .ss-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(17, 70, 105, 0.15);
  }

  .ss-plan-card.active-plan:hover {
    transform: translateY(-4px);
  }

  /* === MOST POPULAR RIBBON - ABSOLUTE KILLER === */
  .ss-plan-card.most-popular-plan::before {
    content: "";
    position: absolute;
    top: -39px;
    left: 100%;
    transform: translateX(-50%);
    padding: 8px 24px;

    box-shadow:
      0 2px 15px rgba(253, 184, 19, 0.4),
      0 4px 20px rgba(255, 167, 38, 0.6),
      inset 0 2px 4px rgba(255, 255, 255, 0.3);
    z-index: 10;
  }

  /* Optional: Extra pop on hover */
  .ss-plan-card.most-popular-plan:hover::before {
    animation-duration: 1s;
    box-shadow:
      0 6px 20px rgba(253, 184, 19, 0.6),
      0 0 30px rgba(255, 193, 7, 0.8),
      inset 0 2px 4px rgba(255, 255, 255, 0.4);
  }

  /* Optional: Add tiny sparkle stars around it */
  .ss-plan-card.most-popular-plan::after {
    content: "✦ ✦ ✦";
    position: absolute;
    top: -36px;
    left: 100%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 8px;
    color: #FFD700;
    z-index: 9;
    animation: sparkle 3s infinite;
    pointer-events: none;
  }

  @keyframes sparkle {

    0%,
    100% {
      opacity: 0.6;
      transform: translateX(-50%) scale(1.2);
    }

    50% {
      opacity: 1;
      transform: translateX(-50%) scale(1.4) rotate(3deg);
    }
  }

  .ss-plan-card .most-popular {
    background-color: #144669;
    color: #ffffff;
    padding: 10px;
    margin: -17px;
    z-index: 1;
    position: relative;
    border-radius: 1px 1px 0px 0px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
  }


  /* === MOST POPULAR - GLOW PULSE + SPARKLE MAGIC === */
  .ss-plan-card.most-popular-plan {
    position: relative;
    overflow: visible !important;
    z-index: 2;
  }

  .most-popular h3 {
    margin: 0;
    padding: 10px 32px;
    background: linear-gradient(135deg, #ebbd08 0%, #efc107 30%, #ffcc00 60%, #d9af06 100%);
    color: #000;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 3px solid #fff;
    box-shadow:
      0 4px 20px rgba(255, 215, 0, 0.5),
      0 0 30px rgba(255, 165, 0, 0.7),
      inset 0 2px 8px rgba(255, 255, 255, 0.4);
    text-shadow:
      0 1px 0 #fff,
      0 2px 4px rgba(0, 0, 0, 0.3);
    animation:

      float 4s infinite ease-in-out;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  /* GLOW PULSE */
  @keyframes glowPulse {

    0%,
    100% {
      box-shadow:
        0 4px 20px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 165, 0, 0.7),
        inset 0 2px 8px rgba(255, 255, 255, 0.4);
      transform: translateX(0%) translateY(0) scale(1);
    }

    50% {
      box-shadow:
        0 8px 35px rgba(255, 215, 0, 0.8),
        0 0 50px rgba(255, 140, 0, 1),
        0 0 70px rgba(255, 99, 71, 0.6),
        inset 0 3px 12px rgba(255, 255, 255, 0.6);
      transform: translateX(0%) translateY(-4px) scale(1.05);
    }
  }

  /* SUBTLE FLOAT */
  @keyframes float {

    0%,
    100% {
      transform: translateX(0%) translateY(0);
    }

    50% {
      transform: translateX(0%) translateY(-2px);
    }
  }



  /* Optional: Make card itself pulse when hovered */
  .ss-plan-card.most-popular-plan:hover .most-popular h3 {
    animation-duration: 1.2s, 2s;
    box-shadow:
      0 6px 25px rgba(255, 215, 0, 1),
      0 0 5px rgba(255, 140, 0, 1.2),
      0 0 6px rgba(255, 99, 71, 0.8),
      inset 0 4px 16px rgba(255, 255, 255, 0.7);
  }


  /* Enhanced hover state for desktop */
  @media (min-width: 769px) {
    .ss-plan-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 12px 32px rgba(17, 70, 105, 0.25);
      border-width: 5px;
    }
  }

  .ss-plan-card.selected {
    border-width: 5px;
    box-shadow: 0 12px 32px rgba(17, 70, 105, 0.25);
    transform: translateY(-2px);
  }

  .ss-plan-card.selected::before {
    content: "✓";
    color: #114669;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .ss-plan-card.selected .ss-plan-header h3 {
    font-weight: 800;
    text-decoration: underline;
  }

  .ss-plan-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8ecf0;
  }

  .ss-plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #114669;
    margin-bottom: 12px;
  }

  .ss-plan-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .ss-bundle-price {
    font-size: 20px;
    font-weight: 600;
    color: #059669;
  }

  .ss-discount-price {
    font-size: 20px;
    font-weight: 600;
    color: #059669;
  }

  .ss-regular-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 20px;
  }

  .ss-plan-card.bundle-active .ss-plan-header::after {
    content: 'Bundle Discount Applied!';
    display: block;
    margin-top: 8px;
    padding: 4px 12px;
    background: #114669;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .ss-plan-details {
    margin: 20px 0;
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .ss-plan-details p {
    font-size: 15px;
    color: #4b5563;
    margin: 10px 0;
    line-height: 1.6;
  }

  .ss-plan-details ul {
    list-style: none;
    max-width: 450px;
  }

  .ss-plan-details>ul li::before {
    content: "✔";
    color: #27ae60;
    margin-right: 10px;
  }

  .ss-plan-details ul li ul {
    list-style: disc;
    margin-left: 20px;
  }

  .ss-plan-details ul li ul li {
    margin-left: 20px;
  }

  .ss-plan-details>ul li ul li::before {
    content: "";
    color: #FFFFFF00;
    margin-right: 10px;
  }

  .ss-plan-details .ss-plan-bullets {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }

  .ss-plan-details .ss-plan-bullets>ul li {
    font-weight: 900;
    padding-left: 1.8em;
    text-indent: -1.8em;
  }

  .ss-plan-details .ss-plan-bullets>ul li::before {
    content: "✔";
    color: #27ae60;
    margin-right: 12px;
    font-size: 22px;
  }

  .ss-plan-details .ss-plan-bullets .sublist {
    margin-left: 20px;
  }

  .ss-plan-details .ss-plan-bullets .sublist li {
    list-style: disc;
    margin-left: 20px;
    font-weight: 500;
  }

  .ss-plan-details .ss-plan-bullets .sublist li::before {
    content: "○";
    color: #FFFFFF00;
    margin-right: 10px;
  }

  /* Hide the checkbox elements - they're only for form submission */
  .ss-plan-input {
    display: none !important;
  }

  .plan-view-selector {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
    padding: 4px 8px;
  }

  .plan-view-selector label {
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    margin-right: 8px;
  }

  .plan-view-selector select {
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid rgba(17, 70, 105, 0.2);
    background: rgba(17, 70, 105, 0.05);
    color: #114669;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
  }

  .plan-view-selector select:hover {
    background: rgba(17, 70, 105, 0.1);
    border-color: rgba(17, 70, 105, 0.3);
    transform: translateY(-1px);
  }

  .plan-view-selector select:focus {
    outline: none;
    border-color: #114669;
    box-shadow: 0 0 0 3px rgba(17, 70, 105, 0.1);
  }

  /* Bid Writing Services Styling */
  #bidWritingSection {
    background: rgba(220, 235, 255, 0.5);
    border: 2px solid rgba(17, 70, 105, 0.2);
    padding: 32px;
  }

  #bidWritingSection>p {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
  }

  .bid-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    border: 4px solid #114669;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 12px 32px rgba(17, 70, 105, 0.25);
  }

  #bidStarIcon {
    position: absolute;
    width: 150px;
    right: 25px;
    transform: translateY(-110px);
  }

  .bid-service-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e8ecf0;
  }

  .service-icon {
    flex-shrink: 0;
    width: 41px;
    height: 41px;
    margin-left: 0;
  }

  .service-icon img {
    width: 37px;
    height: 37px;
  }

  .bid-service-content {
    flex: 1;
  }

  .bid-service-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #114669;
    margin: 0 0 12px 0;
    line-height: 1.3;
  }

  .bid-service-content p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 24px 0;
  }

  .bid-process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin: 27px 0px;
  }

  .bid-step {
    display: flex;
    align-items: center;
    flex: 1;
  }

  .bid-step-content {
    background: #114669;
    color: #ffffff;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    position: relative;
    flex: 1;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(17, 70, 105, 0.2);
    transition: all 0.3s ease;
  }

  .bid-step-content:hover {
    box-shadow: 0 6px 16px rgba(17, 70, 105, 0.3);
  }

  .bid-step-arrow {
    width: 0;
    height: 0;
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 20px solid #114669;
    margin-left: -1px;
    z-index: 1;
  }

  .bid-step-last .bid-step-content {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .bid-points-control {
    text-align: center;
  }

  .bid-enable-toggle {
    margin-bottom: 24px;
  }

  .bid-toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #114669;
    cursor: pointer;
    padding: 12px 24px;
    background: rgba(17, 70, 105, 0.05);
    border: 2px solid rgba(17, 70, 105, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .bid-toggle-label:hover {
    background: rgba(17, 70, 105, 0.1);
    border-color: rgba(17, 70, 105, 0.3);
    transform: translateY(-1px);
  }

  .bid-enable-checkbox {
    width: 20px;
    height: 20px;
  }

  .bid-points-slider-container {
    animation: fadeIn 0.4s ease;
  }

  .bid-points-control label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #114669;
    margin-bottom: 16px;
  }

  .bid-points-control #bidPointsValue {
    color: #114669;
    font-size: 24px;
    font-weight: 700;
    margin-left: 8px;
  }

  #bidPointsSlider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e8ecf0;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 24px;
  }

  #bidPointsSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #114669;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #bidPointsSlider::-webkit-slider-thumb:hover {
    background: #0d3a52;
    transform: scale(1.2);
  }

  #bidPointsSlider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #114669;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
  }

  #bidPointsSlider::-moz-range-thumb:hover {
    background: #0d3a52;
    transform: scale(1.2);
  }

  .bid-pricing-display {
    background: rgba(17, 70, 105, 0.05);
    padding: 20px 24px;
    border-radius: 8px;
    border: 2px solid rgba(17, 70, 105, 0.1);
  }

  .bid-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }

  .bid-price-row:last-child {
    margin-bottom: 0;
  }

  .bid-total-row {
    padding-top: 12px;
    border-top: 2px solid rgba(17, 70, 105, 0.2);
    margin-top: 8px;
  }

  .bid-discount-row {
    color: #059669;
  }

  .bid-price-label {
    font-size: 16px;
    font-weight: 600;
    color: #4b5563;
  }

  .bid-price-per {
    font-size: 18px;
    font-weight: 600;
    color: #114669;
  }

  .bid-discount-amount {
    font-size: 18px;
    font-weight: 700;
    color: #059669;
  }

  .bid-price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #114669;
  }

  .bid-service-input {
    display: none !important;
  }

  /* Desktop styles */
  @media (min-width: 1025px) {
    .package-service {
      display: flex;
      align-items: center;
      padding: 0px;
      background: #f8fafc;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      min-height: auto;
      height: auto;
      position: relative;
    }

    .main-package-section {
      flex-direction: column;
    }

    .service-icon {
      flex-shrink: 0;
      margin-right: 15px;
      width: 45px;
      height: 45px;
    }

    .service-icon img {
      width: 37px;
      height: 37px;
    }

    #bidStarIcon {
      position: absolute;
      width: 150px;
      left: 900px;
      transform: translateY(-110px);
    }
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    body {
      padding: 10px 5px;
    }

    .quote-builder-container {
      max-width: 100%;
    }

    .quote-header {
      padding: 30px 20px;
    }

    .quote-header h2 {
      font-size: 28px;
    }

    .quote-body {
      padding: 25px 15px;
      gap: 20px;
    }

    .quote-section {
      display: none;
      width: 98%;
      padding: 10px;
      background: rgba(220, 235, 255, 0.3);
      border-radius: 4px;
      border: 1px solid rgba(17, 70, 105, 0.1);
      margin-bottom: 16px;
    }

    .radio-row {
      flex-direction: column;
      gap: 12px;
    }

    .radio-row label {
      min-width: unset;
      justify-content: flex-start;
    }

    .quote-footer {
      padding: 20px;
    }

    .total-price {
      font-size: 20px;
    }

    .pricing-wrapper {
      flex-direction: column;
    }

    .discount-code-section {
      flex: 1 1 auto;
      width: 100%;
    }

    /* Hide the dropdown selector on mobile */
    #monthlySelectionHeader {
      display: none !important;
    }

    /* Mobile S&S Plans - Show all plans stacked */
    .ss-plans-container {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-top: 20px;
      padding: 0;
    }

    .ss-plan-card {
      max-width: 100%;
      width: 100%;
      min-width: unset;
      margin: 0 !important;
      padding: 15px;
      box-sizing: border-box;
    }

    .ss-plan-card ul {
      padding: 0px;
    }

    .ss-plan-card .ss-plan-details>ul>li {
      padding-left: 1.5em;
      text-indent: -1.5em;
    }

    .ss-plan-card .ss-plan-details .sublist {
      margin-left: 0em;
      padding-left: 0.5em;
      text-indent: -0.5em;
    }

    /* Hide expanded plan versions on mobile */
    .ss-plan-card.plan-expanded {
      display: none !important;
    }

    /* Force show all collapsed plans on mobile - override any hidden class */
    .ss-plan-card:not(.plan-expanded) {
      display: flex !important;
    }

    /* Smaller stars on mobile - positioned on edge */
    .ss-plan-card::after {
      width: 61px;
      height: 61px;
      top: -24px;
      right: -22px;
    }

    .ss-plan-card::before {
      width: 51px;
      height: 51px;
      top: -18px;
      right: -18px;
    }

    /* Adjust most popular plan for mobile */
    .most-popular-plan {
      max-width: 100%;
      border-width: 5px;
      margin: 0 !important;
      min-height: unset;
    }

    .most-popular-plan .most-popular h3 {
      font-size: 13px;
      padding: 8px 20px;
    }

    .discount-code-section {
      padding: 10px;
    }

    .discount-code-section {
      max-width: 230px;
    }

    .quote-body textarea {
      max-width: 320px;
    }
  }

  /* Loading Overlay Styles */
  .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 70, 105, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .loading-overlay.active {
    display: flex;
    opacity: 1;
  }

  .loading-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .loading-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border: 6px solid rgba(17, 70, 105, 0.1);
    border-top: 6px solid #114669;
    border-radius: 50%;
    animation: spin 1s linear infinite, pulse 2s ease-in-out infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes pulse {
    0%, 100% { border-top-color: #114669; }
    50% { border-top-color: #1e88e5; }
  }

  .loading-text {
    color: #114669;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
  }