/* ============================================================================
     WCAG 2.2 AAA TOAST NOTIFICATION
     ============================================================================ */
  .wcag-toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 105000;
    pointer-events: none;
    /* Let clicks pass through if hidden */
  }

  .wcag-toast {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 6px solid #28a745;
    /* Success Green Indicator */

    /* Animation Baseline */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    pointer-events: auto;
  }

  .wcag-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Seizure-Safe: Respect OS Reduced Motion Settings */
  @media (prefers-reduced-motion: reduce) {
    .wcag-toast {
      transition: opacity 0.5s ease, visibility 0.5s;
      transform: none;
      /* Disable the sliding motion */
    }
  }

  .wcag-toast-icon {
    font-size: 24px;
    color: #28a745;
  }

  .wcag-toast-text {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
  }

  .wcag-toast-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    transition: color 0.2s;
  }

  .wcag-toast-close:hover,
  .wcag-toast-close:focus-visible {
    color: var(--white-color);
    outline: 2px solid var(--white-color);
    border-radius: 4px;
  }

  /* ============================================================================
     CUSTOM CHECKBOX
     ============================================================================ */
  .custom-checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .theme-checkbox {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 3px;
    background-color: var(--white-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-position: center;
    background-size: 14px;
    background-repeat: no-repeat;
  }

  .theme-checkbox:checked {
    background-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  }

  .theme-checkbox:focus-visible {
    box-shadow: 0 0 0 3px rgba(2, 48, 71, 0.3);
  }

  /* =========================================
     RECAPTCHA ACCESSIBILITY FIX
     The reCAPTCHA library injects a textarea[name="g-recaptcha-response"]
     into the DOM without a label, which triggers WCAG "Field labels" errors.
     This field requires no user interaction — hiding it from the
     accessibility tree is the correct, widely-accepted fix.
     ========================================= */
/* reCAPTCHA textarea styling now handled via JS for accessibility; removed hidden styles */

  /* =========================================
     WCAG 2.2 APPOINTMENT PAGE FIXES
     ========================================= */

  /* 1. Form Inputs (Placeholders as Labels) */
  .contact-us-form.appointment-form .form-control::placeholder,
  .contact-us-form.appointment-form .form-select::placeholder {
    color: #4a4a4a !important;
    /* Meets 4.5:1 */
    opacity: 1;
  }

  /* 2. Input Borders — Visible 2px border for WCAG 1.4.11 ≥3:1 contrast
     Specificity 0,3,0 beats base .contact-us-form .form-control (0,2,0)
     which sets border: none. */
  .contact-us-form.appointment-form .form-control,
  .contact-us-form.appointment-form .form-select {
    border: 2px solid #555555 !important;
    box-shadow: none !important;
  }

  .contact-us-form.appointment-form .form-control:focus,
  .contact-us-form.appointment-form .form-select:focus {
    border-color: var(--primary-color) !important;
  }

  /* 3. Select Dropdown Arrow — Dark Stroke for ≥3:1 */
  .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  }

  /* 4. Focus-Visible Outline Ring */
  .contact-us-form.appointment-form .form-control:focus-visible,
  .contact-us-form.appointment-form .form-select:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
  }

  /* Server-side validation error styling */

/* Required note contrast is handled by .contact-us-form.appointment-form p.required-note in custom.css */

  .contact-us-form.appointment-form .form-control[aria-invalid="true"],
  .contact-us-form.appointment-form .form-select[aria-invalid="true"] {
    border-color: #D32F2F !important;
  }

  /* 3. Validation Errors */
  .help-block.with-errors ul li {
    color: #D32F2F !important;
  }

  /* 4. Page Header Contrast */
  .page-header-box h1,
  .breadcrumb-item a,
  .breadcrumb-item.active {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    color: var(--white-color) !important;
  }

  /* 5. Testimonial Pagination Focus (High Visibility) */
  .testimonial-button-prev:focus-visible,
  .testimonial-button-next:focus-visible {
    outline: 4px solid #ffffff !important;
    /* High contrast White */
    outline-offset: 4px !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
    /* Glow for dark bg */
    z-index: 100 !important;
  }

  /* 6. Prevent Clipping of Focus Outlines */
  .testimonial-btn {
    padding: 10px !important;
  }

  /* ============================================================================
   APPOINTMENT PAGE - DEFAULT FOOTER CTA FIX
   ============================================================================ */

  /* Force the section to have a visible background and dark text by default */
  .next-step-cta-section {
    background-color: var(--primary-color) !important;
    padding: 80px 0 !important;
  }

  .next-step-cta-section .cta-title {
    color: var(--white-color) !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
  }

  .next-step-cta-section .cta-text {
    color: var(--white-color) !important;
    font-size: 1.2rem !important;
    margin-bottom: 40px !important;
  }

  /* ============================================================================
     PREMIUM ACTION BUTTON: Total bypass of theme button logic
     ============================================================================ */
  .btn-premium-action {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 22px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: capitalize !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden !important;
    border: none !important;
    cursor: pointer !important;
    user-select: none !important;
  }

  /* Reset any residual theme styles */
  .btn-premium-action,
  .btn-premium-action::before,
  .btn-premium-action::after,
  .btn-premium-action:hover,
  .btn-premium-action:hover::before,
  .btn-premium-action:hover::after {
    content: none !important;
    display: flex !important;
    box-shadow: none !important;
    transform: none !important;
    animation: none !important;
  }

  /* Intro Section Style: Solid Navy -> Black Hover */
  .appointment-intro-section .btn-premium-action {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(2, 48, 71, 0.1) !important;
  }

  .appointment-intro-section .btn-premium-action:hover {
    background-color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
  }

  /* Footer CTA Style: Solid White -> Slate Hover */
  .next-step-cta-section .btn-premium-action {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  }

  .next-step-cta-section .btn-premium-action:hover {
    background-color: #f8fafc !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
  }

  /* Ensure text visibility */
  .btn-premium-action span {
    position: relative !important;
    z-index: 5 !important;
    color: inherit !important;
    pointer-events: none !important;
  }

  /* =========================================
     WCAG 2.2 TEXT SCALING (AAA)
     ========================================= */

  /* Level 1: +25% Text Size */
  body.acc-text-x1 .location-title { font-size: 2.8rem !important; }
  body.acc-text-x1 .clinic-name { font-size: 1.6rem !important; }
  body.acc-text-x1 .address-line { font-size: 1.3rem !important; }
  body.acc-text-x1 .location-map-wrapper h4 { font-size: 1.5rem !important; }
  body.acc-text-x1 .location-map-wrapper .btn-default { font-size: 1.1rem !important; }

  /* Level 2: +50% Text Size */
  body.acc-text-x2 .location-title { font-size: 3.2rem !important; }
  body.acc-text-x2 .clinic-name { font-size: 1.9rem !important; }
  body.acc-text-x2 .address-line { font-size: 1.5rem !important; }
  body.acc-text-x2 .location-map-wrapper h4 { font-size: 1.8rem !important; }
  body.acc-text-x2 .location-map-wrapper .btn-default { font-size: 1.3rem !important; }

  /* Level 3: +100% Text Size (Extreme) */
  body.acc-text-x3 .location-title { font-size: 4rem !important; }
  body.acc-text-x3 .clinic-name { font-size: 2.3rem !important; }
  body.acc-text-x3 .address-line { font-size: 1.8rem !important; }
  body.acc-text-x3 .location-map-wrapper h4 { font-size: 2.2rem !important; }
  body.acc-text-x3 .location-map-wrapper .btn-default { font-size: 1.6rem !important; }

  /* Ensure card adjusts for larger text */
  body.acc-text-x1 .location-card-premium,
  body.acc-text-x2 .location-card-premium,
  body.acc-text-x3 .location-card-premium {
    height: auto !important;
    padding-bottom: 40px;
  }
  
  body.acc-text-x1 .location-map-wrapper,
  body.acc-text-x2 .location-map-wrapper,
  body.acc-text-x3 .location-map-wrapper {
    min-height: 300px;
  }

  /* Focus States - High Visibility Accessibility (Pink Ring) */
  .btn-premium-action:focus-visible,
  .btn-premium-action:focus {
    outline: 4px solid #ff3399 !important; /* Vibrant Pink */
    outline-offset: 8px !important;
    box-shadow: 0 0 0 12px rgba(255, 51, 153, 0.2) !important;
    transform: translateY(-5px) !important; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 10 !important;
    position: relative !important;
  }

  /* =========================================
     DARK CONTRAST MODE OVERRIDES
     ========================================= */
  html[data-contrast="dark"] .btn-premium-action {
    background-color: #000000 !important;
    background: #000000 !important;
    color: #ffff00 !important;
    border: 2px solid #ffff00 !important;
    box-shadow: none !important;
  }

  html[data-contrast="dark"] .btn-premium-action:hover {
    background-color: #000000 !important;
    background: #000000 !important;
    color: #ffff00 !important;
    border-color: #ffff00 !important;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.4) !important;
  }

  html[data-contrast="dark"] .btn-premium-action span {
    color: #ffff00 !important;
    background: transparent !important;
  }

  /* =========================================
     INVERT MODE ICON CALIBRATION
     ========================================= */
  html[data-contrast="invert"] .availability-card svg path,
  html[data-contrast="invert"] .availability-card svg rect,
  html[data-contrast="invert"] .appointment-details-section svg path,
  html[data-contrast="invert"] .appointment-details-section svg rect,
  html[data-contrast="invert"] .sticker-appointment path,
  html[data-contrast="invert"] .sticker-appointment rect,
  html[data-contrast="invert"] .sticker-appointment line,
  html[data-contrast="invert"] .sticker-appointment circle {
    stroke: #eae1e1ff !important;
    fill: none !important; /* Most of these are stroke-only */
  }

  html[data-contrast="invert"] .sticker-appointment circle[fill="var(--primary-color)"] {
    fill: #f9eaeaff !important; /* Inverts to White */
    stroke: none !important;
  }

  /* =========================================
     DARK CONTRAST MODE ICON CALIBRATION
     ========================================= */
  html[data-contrast="dark"] .availability-card svg path,
  html[data-contrast="dark"] .availability-card svg rect,
  html[data-contrast="dark"] .appointment-details-section svg path,
  html[data-contrast="dark"] .appointment-details-section svg rect,
  html[data-contrast="dark"] .sticker-appointment path,
  html[data-contrast="dark"] .sticker-appointment rect,
  html[data-contrast="dark"] .sticker-appointment line,
  html[data-contrast="dark"] .sticker-appointment circle {
    stroke: #ffff00 !important;
  }

  html[data-contrast="dark"] .sticker-appointment circle[fill*="primary"] {
    fill: #ffff00 !important;
    stroke: none !important;
  }

  /* =========================================
     LIGHT CONTRAST MODE ICON CALIBRATION
     ========================================= */
  html[data-contrast="light"] .availability-card svg path,
  html[data-contrast="light"] .availability-card svg rect,
  html[data-contrast="light"] .panel-icon,
  html[data-contrast="light"] .panel-icon path,
  html[data-contrast="light"] .panel-icon rect,
  html[data-contrast="light"] .panel-icon circle,
  html[data-contrast="light"] .panel-icon polygon,
  html[data-contrast="light"] .panel-icon ellipse,
  html[data-contrast="light"] .panel-icon line,
  html[data-contrast="light"] .appointment-details-section svg path,
  html[data-contrast="light"] .appointment-details-section svg rect,
  html[data-contrast="light"] .sticker-appointment path,
  html[data-contrast="light"] .sticker-appointment rect,
  html[data-contrast="light"] .sticker-appointment line,
  html[data-contrast="light"] .sticker-appointment circle,
  html[data-contrast="light"] .next-step-cta-section div[aria-hidden="true"] svg path,
  html[data-contrast="light"] .next-step-cta-section div[aria-hidden="true"] svg rect,
  html[data-contrast="light"] .next-step-cta-section div[aria-hidden="true"] svg circle,
  html[data-contrast="light"] .next-step-cta-section div[aria-hidden="true"] svg line {
    stroke: #000000 !important;
    color: #000000 !important;
  }

  /* Specifically handle filled components in Light Mode */
  html[data-contrast="light"] .panel-icon[fill="currentColor"],
  html[data-contrast="light"] .panel-icon path[fill="currentColor"],
  html[data-contrast="light"] .next-step-cta-section div[aria-hidden="true"] svg path[fill*="primary"],
  html[data-contrast="light"] .next-step-cta-section div[aria-hidden="true"] svg circle[fill*="primary"] {
    fill: #000000 !important;
  }

  html[data-contrast="light"] .sticker-appointment circle[fill*="primary"] {
    fill: #000000 !important;
    stroke: none !important;
  }

  /* Force Process Section titles to black in Light Mode (Easy Steps and Post-Submit) */
  html[data-contrast="light"] #main-content#main-content .post-submit-details .section-title .sub-title,
  html[data-contrast="light"] #main-content#main-content .post-submit-details .section-title h2,
  html[data-contrast="light"] #main-content#main-content .easy-steps-section .section-title .sub-title,
  html[data-contrast="light"] #main-content#main-content .easy-steps-section .section-title h2 {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    opacity: 1 !important;
  }

  /* =========================================
     APPOINTMENT FORM CONTRAST MODE OVERRIDES
     ========================================= */

  /* Dark Mode */
  html[data-contrast="dark"] .appointment-form .form-control,
  html[data-contrast="dark"] .appointment-form .form-select {
    background-color: #000000 !important;
    border: 1px solid #ffff00 !important;
    color: #ffff00 !important;
  }

  html[data-contrast="dark"] .appointment-form .form-control::placeholder {
    color: rgba(255, 255, 0, 0.5) !important;
  }

  /* Light Mode */
  html[data-contrast="light"] .appointment-form .form-control,
  html[data-contrast="light"] .appointment-form .form-select {
    background-color: #ffffff !important;
    border: 1px solid #000000 !important;
    color: #000000 !important;
  }

  /* Focus States - High Visibility Accessibility (Pink Ring) */
  .process-step-card:focus-visible,
  .process-step-card:focus,
  .suitability-item:focus-visible,
  .suitability-item:focus {
    outline: 4px solid #ff3399 !important; /* Vibrant Pink */
    outline-offset: 8px !important;
    box-shadow: 0 0 0 12px rgba(255, 51, 153, 0.2) !important;
    transform: translateY(-5px) !important; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 10 !important;
    position: relative !important;
  }

  /* =========================================
     REVIEW MODAL
     ========================================= */
  .review-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 106000;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .review-modal-overlay.active {
    display: flex;
  }

  .review-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
  }

  .review-modal-header {
    background: var(--primary-color);
    color: #fff;
    padding: 24px 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
  }

  .review-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
  }

  .review-modal-header p {
    margin: 6px 0 0;
    font-size: 14px;
    opacity: 0.85;
  }

  .review-modal-body {
    padding: 24px 30px;
  }

  .review-modal-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .review-modal-field:last-of-type {
    border-bottom: none;
  }

  .review-modal-field .field-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .review-modal-field .field-value {
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
  }

  .review-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .review-modal-footer .btn-modal-edit {
    background: #f1f5f9;
    color: #475569;
    border: 2px solid #e2e8f0;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .review-modal-footer .btn-modal-edit:hover,
  .review-modal-footer .btn-modal-edit:focus-visible {
    background: #e2e8f0;
  }

  .review-modal-footer .btn-modal-confirm {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .review-modal-footer .btn-modal-confirm:hover,
  .review-modal-footer .btn-modal-confirm:focus-visible {
    background: #000;
  }

  .review-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
  }

  .review-modal-close:hover,
  .review-modal-close:focus-visible {
    color: #fff;
    outline: 2px solid #fff;
  }

  @media (prefers-reduced-motion: reduce) {
    .review-modal-overlay {
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
    }
  }

@keyframes float-appt-1 {
      0%, 100% { transform: translateY(0) rotate(5deg); }
      50% { transform: translateY(-15px) rotate(-5deg); }
    }
    @keyframes float-appt-2 {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-10px) scale(1.05); }
    }
    @keyframes float-appt-3 {
      0%, 100% { transform: translateY(0) rotate(-10deg); }
      50% { transform: translateY(-12px) rotate(0deg); }
    }
    /* Responsive Fix: Hide floating stickers/shapes on tablets/mobiles to prevent text overlap */
    @media (max-width: 991px) {
      .appointment-intro-section .decorative-shapes,
      .appointment-intro-section div[style*="position: absolute"] {
        display: none !important;
      }
    }

@keyframes float-details-1 {
      0%, 100% { transform: translateY(0) rotate(-5deg); }
      50% { transform: translateY(-12px) rotate(5deg); }
    }
    @keyframes float-details-2 {
      0%, 100% { transform: translateY(0) rotate(10deg); }
      50% { transform: translateY(-10px) rotate(0deg); }
    }
    /* Responsive Fix: Hide ambient icons on tablets/mobiles to prevent text overlap */
    @media (max-width: 991px) {
      .appointment-details-section div[aria-hidden="true"],
      .appointment-details-section div[style*="position: absolute"] {
        display: none !important;
      }
    }

@keyframes float-process-1 {
      0%, 100% { transform: translateY(0) rotate(-5deg); }
      50% { transform: translateY(-15px) rotate(5deg); }
    }
    @keyframes float-process-2 {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-12px) scale(1.05); }
    }
    @keyframes float-process-3 {
      0%, 100% { transform: translateY(0) rotate(10deg); }
      50% { transform: translateY(-10px) rotate(0deg); }
    }

@keyframes float-step-icon {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .step-sticker {
      width: 65px;
      height: 65px;
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 12px 24px rgba(0,0,0,0.06);
      border: 2px solid #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      animation: float-step-icon 5s ease-in-out infinite;
    }
    /* Stagger the animations slightly so they don't all float in unison */
    .step-sticker-1 { animation-delay: 0s; }
    .step-sticker-2 { animation-delay: 1s; }
    .step-sticker-3 { animation-delay: 0.5s; }
    .step-sticker-4 { animation-delay: 1.5s; }

@keyframes float-loc-1 {
      0%, 100% { transform: translateY(0) rotate(5deg); }
      50% { transform: translateY(-15px) rotate(-5deg); }
    }
    @keyframes float-loc-2 {
      0%, 100% { transform: translateY(0) rotate(-5deg); }
      50% { transform: translateY(-12px) rotate(5deg); }
    }
    @keyframes float-loc-3 {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-10px) scale(1.05); }
    }

    /* Neighborhood Grid Layout */
    .neighborhoods-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 24px;
    }

    /* Neighborhood Pills - Permanent State (No Hover) */
    .neighborhood-pill {
      padding: 8px 18px;
      background-color: rgba(2, 48, 71, 0.06);
      color: var(--primary-color);
      border-radius: 100px;
      font-size: 0.95rem;
      font-weight: 600;
      transition: none !important;
      cursor: default !important;
      border: 1px solid transparent;
      display: inline-block;
    }

    /* Total Freeze of Hover States - All Modes */
    .neighborhood-pill:hover {
      background-color: rgba(2, 48, 71, 0.06) !important;
      color: var(--primary-color) !important;
      transform: none !important;
      box-shadow: none !important;
    }

    /* Contrast Mode Support - Frozen Neighborhood Pills */
    html[data-contrast="dark"] .neighborhood-pill,
    html[data-contrast="dark"] .neighborhood-pill:hover {
      background-color: rgba(255, 255, 255, 0.1) !important;
      color: #ffffff !important;
      border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    html[data-contrast="light"] .neighborhood-pill,
    html[data-contrast="light"] .neighborhood-pill:hover {
      background-color: #f1f5f9 !important;
      color: #000000 !important;
      border: 1px solid #cbd5e1 !important;
    }

    html[data-contrast="invert"] .neighborhood-pill,
    html[data-contrast="invert"] .neighborhood-pill:hover {
      background-color: #ffffff !important; /* Rendered White -> Visual Black */
      color: #000000 !important; /* Rendered Black -> Visual White */
      border: 1px solid #ffffff !important;
    }

@keyframes float-final-cta-1 {
      0%, 100% { transform: translateY(0) rotate(-5deg); }
      50% { transform: translateY(-15px) rotate(5deg); }
    }
    @keyframes float-final-cta-2 {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-10px) scale(1.05); }
    }
    @keyframes float-final-cta-3 {
      0%, 100% { transform: translateY(0) rotate(10deg); }
      50% { transform: translateY(-12px) rotate(0deg); }
    }
    /* Responsive Fix: Hide floating icons on tablets/mobiles to prevent text overlap */
    @media (max-width: 991px) {
      .next-step-cta-section div[aria-hidden="true"] {
        display: none !important;
      }
      .next-step-cta-section {
        padding: 60px 20px !important;
      }
    }