/* =========================================
   PREMIUM ANIMATED INTRO (REFINED)
   ========================================= */

.appointment-intro-section {
  padding: 120px 0;
  background-color: #fafbfb;
  position: relative;
  overflow: hidden;
  /* Contain decorative elements */
}

/* Ambient Background Layer */
.intro-ambient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(94, 234, 212, 0.05) 0%, transparent 50%),
    /* Soft Teal */
    radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  /* Soft Blue */
  z-index: 0;
  pointer-events: none;
}

/* Decorative Shapes Container */
.decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Animated Ring 1 */
.shape-ring.ring-1 {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(2, 48, 71, 0.05);
  /* Muted Navy */
  border-radius: 50%;
  animation: rotateSlow 60s linear infinite;
}

/* Animated Ring 2 */
.shape-ring.ring-2 {
  position: absolute;
  top: 50px;
  left: 100px;
  width: 150px;
  height: 150px;
  border: 1px dashed rgba(2, 48, 71, 0.08);
  border-radius: 50%;
  animation: rotateReverse 40s linear infinite;
}

/* Dot Grid Accent */
.shape-dot-grid {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(rgba(2, 48, 71, 0.1) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.6;
}

.relative-z {
  position: relative;
  z-index: 2;
  /* Content sits above decors */
}


.appointment-intro-section .row {
  align-items: center;
  /* Center align for panel balance */
}


/* Left Column: Headline */
.intro-headline-wrapper {
  padding-right: 40px;
}

.intro-headline {
  position: relative;
}

.intro-headline h2 {
  font-family: var(--accent-font);
  font-size: 48px;
  line-height: 1.25;
  color: #1e293b;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  /* Smooth entrance */
}

/* Vertical Gradient Accent Line - animating in */
.headline-accent-line {
  width: 4px;
  height: 0;
  /* Start hidden */
  background: linear-gradient(to bottom, var(--accent-color), transparent);
  position: absolute;
  left: -24px;
  top: 8px;
  border-radius: 2px;
  animation: growHeight 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}


/* Right Column: Content Panel */

/* Remove old divider/padding styles first */
.intro-content {
  padding-left: 0;
}

.intro-content::before {
  display: none;
}

/* New Panel Style */
.intro-content-panel {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
  /* Soft elevation */
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
  /* Staggered */
}

/* Matching top accent bar on panel */
.intro-content-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 48px;
  right: 48px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 0 0 4px 4px;
  opacity: 0.3;
}


.intro-content-panel p {
  font-family: var(--default-font);
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 32px;
}

.intro-content-panel p:last-child {
  margin-bottom: 0;
  color: #0f172a;
  border-left: 3px solid var(--accent-color);
  /* Highlight for call to action paragraph */
  padding-left: 20px;
}


/* KEYFRAMES */

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

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes growHeight {
  from {
    height: 0;
  }

  to {
    height: 80px;
  }

  /* Fixed height accent */
}


/* Responsive */
@media (max-width: 991px) {
  .appointment-intro-section {
    padding: 80px 0;
  }

  .intro-headline-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .headline-accent-line {
    left: 0;
    top: -24px;
    width: 40px;
    height: 4px;
    /* horizontal on mobile or just hidden? Let's hide to be clean */
    display: none;
  }

  .intro-headline h2 {
    font-size: 34px;
  }

  .intro-content-panel {
    padding: 32px;
  }
}

/* =========================================
   GUIDED CONSULTATION PANEL (ANIMATED & LAYERED)
   ========================================= */

.appointment-details-section {
  padding: 100px 0;
  /* Deep Blue Gradient Background for depth */
  background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  /* For any overflow effects */
}

/* Subtle texture overlay or glow could be added here if needed */

.consultation-wrapper {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

/* Left Column: Context */
.consultation-context {
  padding-right: 50px;
}

/* Animated Heading */
.consultation-heading {
  font-family: var(--accent-font);
  font-size: 40px;
  /* Increased presence */
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 40px;
  position: relative;
  line-height: 1.2;
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Animated accent underline */
.consultation-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
  margin-top: 16px;
  opacity: 0;
  animation: growWidth 0.8s ease-out 0.4s forwards;
}

/* Translucent Description Card */
.consultation-desc-container {
  background-color: rgba(255, 255, 255, 0.08);
  /* Slightly more presence */
  backdrop-filter: blur(10px);
  /* Glassmorphism */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  position: relative;
}

/* Visual Connector (Optional subtle line to right column) */
@media (min-width: 992px) {
  .consultation-desc-container::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
    display: block;
  }
}

.consultation-desc {
  font-family: var(--default-font);
  font-size: 17px;
  line-height: 1.9;
  /* Relaxed reading */
  color: #f1f5f9;
  /* High contrast */
  margin-bottom: 25px;
}

.consultation-focus-area {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.focus-label {
  display: block;
  font-family: var(--default-font);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: 700;
  opacity: 0.9;
}

.consultation-focus-area p {
  font-family: var(--default-font);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.9);
  margin: 0;
  font-style: normal;
}


/* Right Column: Availability Cards */
.consultation-options {
  perspective: 1000px;
  /* For 3D card effects */
}

.consultation-options h4 {
  font-family: var(--default-font);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  /* Muted Slate */
  font-weight: 700;
  margin-bottom: 32px;
  display: block;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.5s forwards;
}

.availability-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Distinct separation */
}

.availability-card {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  padding: 28px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform-origin: center left;
  opacity: 0;
  animation: slideInRight 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* Stagger animations */
.availability-card:nth-child(1) {
  animation-delay: 0.6s;
}

.availability-card:nth-child(2) {
  animation-delay: 0.8s;
}

.availability-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

/* Accent Detail on Left edge of card */
.availability-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background-color: var(--accent-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.availability-card:hover::before {
  opacity: 1;
}

.option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #f1f5f9;
  border-radius: 12px;
  color: var(--primary-color);
  margin-right: 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Using a pseudo-icon (dot) inside the span, or font-awesome if available in HTML.
   Existing HTML has empty spans. Let's style them as graphic indicators. */
/* Pseudo-icon dot removed as SVGs are now used in HTML */
.option-icon::after {
  display: none;
}

.availability-card:hover .option-icon {
  background-color: var(--primary-color);
  color: white;
}

.availability-card:hover .option-icon::after {
  background-color: white;
}

.availability-text {
  font-size: 18px;
  /* Larger text */
  font-weight: 600;
  color: #0f172a;
  /* Darkest slate */
}

/* Final Instruction - Callout Bar */
.form-instruction-container {
  margin-top: 80px;
  text-align: center;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

/* Distinct Callout Bar Styling */
.form-instruction {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 48px;
  border-radius: 100px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}

/* Glow effect behind instruction */
/* Glow effect removed per request */
.form-instruction::before {
  display: none;
}


/* KEYFRAMES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes growWidth {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 60px;
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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


/* Responsive adjustments */
@media (max-width: 991px) {
  .appointment-details-section {
    padding: 80px 0;
  }

  .consultation-context {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .form-instruction-container {
    margin-top: 40px;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .appointment-details-section {
    padding: 60px 0;
  }

  .consultation-panel {
    padding: 32px 24px;
  }

  .consultation-heading {
    font-size: 28px;
  }

  .consultation-options li {
    font-size: 16px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .form-instruction-container {
    margin-top: 30px;
  }

  .form-instruction {
    font-size: 15px;
    padding: 24px 24px;
    border-radius: 16px;
    line-height: 1.5;
    width: 100%;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  /* Easy Steps Mobile Optimization */
  .easy-steps-section {
    padding: 60px 0 !important;
  }

  .easy-steps-section .steps-grid {
    gap: 24px !important;
    margin-top: 40px !important;
    grid-template-columns: 1fr !important;
  }

  .easy-steps-section .steps-grid>.process-step-card:nth-child(even) {
    top: 0 !important;
    transform: none !important;
  }

  .step-card-light {
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }

  .step-card-light h3 {
    font-size: 20px !important;
    margin-top: 16px !important;
  }

  .step-card-light p {
    font-size: 15px !important;
  }

}

/* =========================================
   POST-SUBMIT DETAILS SECTION (PREMIUM & ACCESSIBLE)
   ========================================= */

.post-submit-details {
  padding: 120px 0 240px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 100%);
  position: relative;
  z-index: 2;
  overflow: hidden;
  /* Added to contain ambient effects */
}

/* Ambient Accents (Subtle Glows) */
.post-submit-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Typography & Hierarchy */
.post-submit-details .section-title h2 {
  color: #FFFFFF;
  font-family: var(--accent-font);
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.post-submit-details .section-title .sub-title {
  color: var(--accent-color);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  display: block;
  margin-bottom: 16px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}


/* Layout Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  perspective: 1000px;
  position: relative;
  z-index: 1;
}


/* Premium Card Architecture */
.process-step-card {
  background: #fdfdfd;
  /* Very subtle off-white warm tint */
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  /* Load Animation (Left to Right slide) */
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUpCard 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Staggered Delays (Smoother rhythm) */
.process-step-card:nth-child(1) {
  animation-delay: 0.1s;
}

.process-step-card:nth-child(2) {
  animation-delay: 0.25s;
}

.process-step-card:nth-child(3) {
  animation-delay: 0.4s;
}

.process-step-card:nth-child(4) {
  animation-delay: 0.55s;
}


/* Interactive State (Lift & Expand Shadow) */
.process-step-card:hover,
.process-step-card:focus-within {
  transform: translateY(-8px);
  background: #FFFFFF;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}


/* Badge Design */
.step-number {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  /* Slightly larger per request */
  height: 48px;
  border-radius: 50%;
  margin-bottom: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  /* Stronger shadow */
  position: relative;
  top: -10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Badge Highlight Inner Ring */
.step-number::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.process-step-card:hover .step-number {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(2, 48, 71, 0.2);
  /* Soft glow */
}


/* =========================================
   ACCESSIBILITY & CONTRAST (WCAG AAA)
   ========================================= */

/* Ensure heading contrast on dark background */
.post-submit-details .section-title h2 {
  color: #FFFFFF;
  /* 21:1 on dark bg */
}

/* Sub-Headline Description Style */
.post-submit-details .section-title .section-desc-text {
  color: #cbd5e1;
  /* Slate 300 - High legibility on dark */
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Ensure sub-title contrast */
.post-submit-details .section-title .sub-title {
  color: #94a3b8;
  /* Light Slate - 4.6:1 on dark bg */
}

/* Card Text Contrast */
.process-step-card h3 {
  color: #0f172a;
  /* Slate 900 - 19:1 on white */
}

.process-step-card p {
  color: #334155;
  /* Slate 700 - 7:1 on white (AAA) */
}

/* Icon Contrast */
.process-step-card .card-icon-wrapper .step-icon,
.step-icon {
  width: 48px !important;
  height: 48px !important;
  color: #0c4a6e;
  transition: all 0.3s ease;
  display: block;
}

/* Focus States for Keyboard Navigation */
.process-step-card:focus-within {
  outline: 2px solid #3b82f6;
  outline-offset: 4px;
}



/* Entrance Keyframes */
@keyframes fadeInUpCard {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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



/* =========================================
   PATIENT SUITABILITY SECTION
   ========================================= */

/* =========================================
   PATIENT SUITABILITY SECTION (STRUCTURED INSIGHT PANELS)
   ========================================= */

.patient-suitability-section {
  padding: 100px 0;
  background-color: #f1f5f9;
  /* Defined section background (Slate 100) */
  position: relative;
  z-index: 1;
  border-top: 1px solid #e2e8f0;
  /* Subtle divider */
}

/* Header Area (Modern Hierarchy) */
.patient-suitability-section .section-title h2 {
  font-family: var(--accent-font);
  /* Modern font */
  font-size: 36px;
  color: #0f172a;
  /* Slate 900 - Strong contrast */
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

/* Subtle Gradient Underline anchor */
.patient-suitability-section .section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.patient-suitability-section .section-title p {
  font-size: 15px;
  color: #64748b;
  /* Slate 500 - Secondary but legible */
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 16px;
}


/* Panel Grid Structure */
.suitability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  /* Tighter, cleaner gap */
  margin-top: 50px;
  margin-bottom: 50px;
}


/* Structured Panels */
.suitability-item {
  display: flex;
  align-items: center;
  /* Vertical centering for precision */
  padding: 20px 24px;
  /* Compact, professional padding */
  background-color: #FFFFFF;
  border-radius: 6px;
  /* Sharper, modern corners */
  border: 1px solid #e2e8f0;
  /* Crisp border */
  border-left: 4px solid var(--primary-color);
  /* Strong left accent bar */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  /* Low profile shadow */
  transition: all 0.2s ease-out;
  /* Snappy transition */
}

/* Interaction & Depth */
.suitability-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
  border-left-color: #0369a1;
  /* Darker accent on hover */
  z-index: 10;
}


/* Icon Treatment - Locked Container */
.panel-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 18px;
  color: #FFFFFF;
  /* White icon */
  background-color: var(--primary-color);
  /* Solid accent bg */
  border-radius: 4px;
  /* Matches panel sharpness */
  padding: 3px;
  /* Reduced padding for pulse icon */
}

/* Text Precision */
.suitability-text {
  font-family: var(--default-font);
  font-size: 16px;
  color: #334155;
  /* Slate 700 */
  font-weight: 600;
  /* Medium-SemiBold for scanned clarity */
  line-height: 1.4;
  /* Tighter leading for density */
}


/* Bottom Guidance Strip (High Contrast Note) */
.suitability-note {
  background-color: #e2e8f0;
  /* High contrast strip */
  border-left: 4px solid #475569;
  /* Dark vertical accent */
  padding: 16px 24px;
  /* Compact height */
  border-radius: 4px;
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.suitability-note p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.suitability-note strong {
  color: #0f172a;
  font-weight: 700;
  margin-right: 8px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.02em;
}


/* Responsive */
@media (max-width: 991px) {
  .suitability-grid {
    grid-template-columns: 1fr;
  }

  .post-submit-details {
    padding: 80px 0 150px 0;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
  }

  .post-submit-details .section-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-step-card {
    padding: 32px 24px;
  }
}

/* =========================================
   ACCESSIBILITY & CONTRAST (WCAG AAA)
   ========================================= */

/* High Contrast Header */
.patient-suitability-section .section-title h2 {
  color: #0f172a;
  /* Slate 900 - 19:1 on light bg */
}

.patient-suitability-section .section-title p {
  color: #475569;
  /* Slate 600 - 7:1 on light bg */
}

/* Panel Text Contrast */
.suitability-text {
  color: #1e293b;
  /* Slate 800 - 15:1 contrast against white */
}

/* Icon Accessibility - Ensure visible against accent bg */
.panel-icon {
  color: #FFFFFF;
  /* White on primary color (Blue/Teal) > 4.5:1 */
}

/* Footer Note Contrast */
.suitability-note p {
  color: #334155;
  /* Slate 700 */
}

.suitability-note strong {
  color: #0f172a;
  /* Slate 900 */
}

/* Keyboard Focus Indicators */
.suitability-item:focus-within,
.suitability-item:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.process-step-card:focus-within,
.process-step-card:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 4px;
}

/* Ensure focusable elements inside SVG are hidden if decorative */
.panel-icon {
  pointer-events: none;
}

/* =========================================
   DECORATIVE ELEMENTS & ICON STYLES
   ========================================= */

/* Ambient Background Container */
.process-ambient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Floating Ring Animation */
.process-ring {
  position: absolute;
  top: -100px;
  right: -100px;
  opacity: 0.6;
  animation: rotateSlow 40s linear infinite;
}

/* Floating Dots Animation */
.process-dots {
  position: absolute;
  bottom: 50px;
  left: 50px;
  opacity: 0.4;
  animation: floatDots 10s ease-in-out infinite;
}

@keyframes floatDots {

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

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

/* =========================================
   MEDICAL DISCLAIMER SECTION (INFORMATION TILE GRID)
   ========================================= */

.medical-disclaimer-section {
  padding: 80px 0 100px 0;
  background-color: #f1f5f9;
  /* Match Section Above (Slate 100) */
  border-top: 1px solid #e2e8f0;
}

/* Container Layout */
.disclaimer-container {
  padding: 0;
  margin-top: 20px;
  max-width: 1000px;
  /* Slightly wider for grid */
  margin-left: auto;
  margin-right: auto;
}

/* Header Area */
.disclaimer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centered header */
  padding-bottom: 40px;
  margin-bottom: 0;
}

.disclaimer-icon {
  width: 32px;
  height: 32px;
  color: #ef4444;
  /* Bright Red */
  margin-right: 16px;
}

.disclaimer-header h2 {
  font-family: var(--accent-font);
  font-size: 26px;
  color: #0f172a;
  /* Dark Slate for contrast on light bg */
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Tile Grid System */
.disclaimer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 Column Grid */
  gap: 24px;
}

/* Soft Tile Design */
.disclaimer-item {
  display: flex;
  align-items: flex-start;
  background-color: #FFFFFF;
  /* White Cards */
  padding: 32px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #e2e8f0;
  /* Light Crisp Border */
}

/* Hover Effect - Subtle Lift */
.disclaimer-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  /* Softer Shadow */
  border-color: #cbd5e1;
}

/* Left Accent Line */
.disclaimer-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #ef4444;
  /* Muted Red Accent */
  opacity: 0.8;
}

/* Remove old bullets */
.disclaimer-bullet {
  display: none;
}

/* Typography */
.disclaimer-text {
  font-family: var(--default-font);
  font-size: 17px;
  color: var(--primary-color);
  /* Primary Color Text */
  line-height: 1.6;
  font-weight: 500;
  /* Slightly bolder for primary color visibility */
}

/* Responsive - Stack to single column */
@media (max-width: 768px) {
  .disclaimer-list {
    grid-template-columns: 1fr;
  }

  .disclaimer-item {
    padding: 24px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .disclaimer-list {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .disclaimer-header {
    padding: 20px 24px;
  }
}

/* Updated Step Number Position (Badge Style on Icon) */
.process-step-card .step-number {
  position: absolute;
  top: -8px;
  right: -6px;
  /* Offset to overlap corner */
  width: 24px;
  height: 24px;
  font-size: 11px;
  margin-bottom: 0 !important;
  z-index: 2;
  border: 2px solid #fdfdfd;
  /* Match card bg */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.process-step-card .step-number::after {
  display: none;
}

/* Main SVG Icon Style */
.step-icon {
  width: 100%;
  height: 100%;
  color: var(--primary-color);
  background-color: rgba(2, 48, 71, 0.05);
  /* Light tint background */
  padding: 14px;
  border-radius: 16px;
  /* Squircle shape */
  transition: all 0.3s ease;
}

/* Hover Effects */
.process-step-card:hover .step-icon {
  background-color: var(--primary-color);
  color: #FFFFFF;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(2, 48, 71, 0.15);
}

.process-step-card:hover .step-number {
  transform: scale(1.1);
  background-color: #0f172a;
  border-color: #FFFFFF;
}

/* =========================================
   EASY STEPS SECTION (LIGHT WORKFLOW)
   ========================================= */

/* =========================================
   EASY STEPS SECTION (PREMIUM DESIGN-LED)
   ========================================= */

.easy-steps-section {
  padding: 120px 0;
  /* Rich Gradient Background */
  background: var(--primary-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Ambient Glow Element (Bottom Right) */
.easy-steps-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Dark Theme Header Contrast */
.easy-steps-section .section-title h2 {
  color: #FFFFFF;
  font-size: 42px;
  /* Large & Confident */
  font-weight: 600;
}

.easy-steps-section .section-title .sub-title {
  color: #94a3b8;
  /* Light Slate */
  letter-spacing: 0.2em;
}

/* Asymmetrical Grid Layout */
.easy-steps-section .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

/* Offset Even Cards for Asymmetry using Position, NOT Transform */
.easy-steps-section .steps-grid>.process-step-card:nth-child(even) {
  top: 40px;
  /* Use Top for structural offset */
  transform: none !important;
  /* Ensure no initial transform */
}

/* Card Variant - Polished & Minimal */
.step-card-light {
  position: relative;
  /* Essential for top offset */
  background-color: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15) !important;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: left;
  transition: box-shadow 0.4s ease;
  /* Only animate shadow */
  height: auto;
  overflow: hidden;
}

/* Interaction - SHADOW ONLY, NO MOVEMENT */
.step-card-light:hover {
  transform: none !important;
  /* Absolutely no movement */
  box-shadow: 0 30px 60px -12px rgba(var(--primary-rgb), 0.2) !important;
}

/* Remove conflicting legacy rule */
.easy-steps-section .steps-grid>.process-step-card:nth-child(even):hover {
  transform: none !important;
}

/* Top Accent Bar */
.step-card-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card-light:hover::before {
  opacity: 1;
}

/* Typography */
.step-card-light h3 {
  color: #0f172a;
  /* Slate 900 */
  font-size: 22px;
  font-family: var(--accent-font);
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.step-card-light p {
  color: #475569;
  /* Slate 600 */
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Refined Badge */
.step-card-light .step-number {
  position: relative;
  top: auto;
  right: auto;
  width: 48px;
  height: 48px;
  margin-bottom: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  background-color: #f8fafc;
  /* Subtle contrasting background */
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  /* Squircle */
  transition: all 0.3s ease;
  box-shadow: none;
  /* Flatten initially */
}

.step-card-light:hover .step-number {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color) !important;
  transform: rotate(10deg);
  /* Playful interaction */
}

/* Responsive - Reset Asymmetry */
@media (max-width: 991px) {
  .easy-steps-section .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .easy-steps-section .steps-grid>.process-step-card:nth-child(even) {
    transform: none;
    /* Remove offset */
  }

  .easy-steps-section .steps-grid>.step-card-light:nth-child(even):hover {
    transform: translateY(-5px) !important;
  }
}

@media (max-width: 767px) {
  .easy-steps-section .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   BROOKLYN LOCATION SECTION (CLEAN MINIMALIST)
   ========================================= */

.brooklyn-location-section {
  padding: 80px 0 100px 0;
  background-color: #f8fafc;
  /* Light Slate Background */
  position: relative;
  z-index: 1;
  border-top: 1px solid #e2e8f0;
}

.location-card-premium {
  background-color: #FFFFFF;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary-color);
  /* Clean Accent */
  border-radius: 12px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  /* Very subtle shadow */
}

.location-content {
  position: relative;
  z-index: 2;
}

.location-title {
  font-family: var(--accent-font);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  /* Slate 500 */
  margin-bottom: 20px;
  font-weight: 700;
}

.clinic-name {
  font-family: var(--accent-font);
  /* Serif for elegance */
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  /* Dark Slate */
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.address-line {
  font-family: var(--default-font);
  font-size: 18px;
  color: #334155;
  /* Slate 700 */
  margin-bottom: 4px;
  font-weight: 500;
}

/* Map Container Styling */
.location-map-wrapper {
  position: relative;
  width: 55%;
  /* Slightly reduced map width */
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.location-content {
  width: 40%;
  /* Increased width for text spacing */
  padding-right: 40px;
  /* More breathing room */
}

/* Responsive */
@media (max-width: 991px) {
  .location-card-premium {
    flex-direction: column;
    text-align: center;
    padding: 32px;
    align-items: center;
  }

  .location-content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 32px;
  }

  .location-map-wrapper {
    width: 100%;
    height: 250px;
  }
}

/* Neighborhoods Accessibility Block - Light Theme Adapter */
.neighborhoods-accessibility-block {
  margin-top: 50px;
  background-color: #ffffff; 
  padding: 60px;
  border-radius: 24px;
  color: #023047;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.neighborhoods-intro {
  font-family: var(--default-font);
  font-size: 1.65em; /* Scalable version of ~26px */
  font-weight: 600;
  margin-bottom: 35px;
  color: #023047;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.neighborhoods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.neighborhood-pill {
  padding: 12px 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  font-size: 1.15em; /* Scalable version of ~19px */
  font-weight: 700;
  color: #334155;
  transition: all 0.3s ease;
  cursor: default;
  white-space: nowrap;
}

.neighborhood-pill:hover {
  background: #023047;
  color: #ffffff;
  border-color: #023047;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(2, 48, 71, 0.2);
}

@media (max-width: 991px) {
  .neighborhoods-accessibility-block {
    padding: 40px;
  }
  .neighborhoods-intro {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .neighborhood-pill {
    font-size: 1em;
    padding: 10px 20px;
  }
}

/* =========================================
   NEXT STEP CTA SECTION
   ========================================= */

.next-step-cta-section {
  padding: 100px 0;
  background-color: var(--primary-color);
  /* Strong brand presence */
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

/* Subtle texture overlay */
/* Subtle texture overlay removed to match footer flat color */
.next-step-cta-section::before {
  display: none;
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--accent-font);
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.cta-text {
  font-family: var(--default-font);
  font-size: 19px;
  line-height: 1.6;
  color: #e2e8f0;
  /* Slate 200 */
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Rectangular Stylish Div-Link */
.cta-rectangular-link {
  display: inline-block;
  background-color: #FFFFFF;
  color: var(--primary-color);
  padding: 24px 64px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #FFFFFF;
  border-radius: 12px;
  /* Rounded Rectangle */
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-rectangular-link:focus-visible {
  outline: 4px solid #FFFFFF;
  outline-offset: 4px;
  background-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

.cta-rectangular-link:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-color: #FFFFFF;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 28px;
  }

  .cta-text {
    font-size: 17px;
  }
}

/* =========================================
   INVERT MODE FIXES
   ========================================= */

/* Force Bright Yellow for Steps Icons */
html[data-contrast="invert"] .process-step-card .card-icon-wrapper .step-icon,
html[data-contrast="invert"] .step-icon {
  color: #ffff00 !important;
  stroke: #ffff00 !important;
  filter: invert(100%) hue-rotate(180deg) !important;
  opacity: 1 !important;
}

/* Force Bright Yellow for Suitability Grid Icons */
html[data-contrast="invert"] .panel-icon,
html[data-contrast="invert"] .suitability-item .panel-icon {
  color: #ffff00 !important;
  stroke: #ffff00 !important;
  filter: invert(100%) hue-rotate(180deg) !important;
}

/* Disclaimer Icon */
html[data-contrast="invert"] .disclaimer-icon {
  color: #ffff00 !important;
  stroke: #ffff00 !important;
  filter: invert(100%) hue-rotate(180deg) !important;
}

/* =========================================
   DARK MODE FIXES
   ========================================= */

/* Intro Section - Force Black Background */
html[data-contrast="dark"] .appointment-intro-section {
  background-color: #000000 !important;
  background: #000000 !important;
}

/* Intro Content Card - Force Black Background & Yellow Border */
html[data-contrast="dark"] .intro-content-panel {
  background-color: #000000 !important;
  border: 2px solid #ffff00 !important;
  box-shadow: none !important;
}

/* Ensure Text is Yellow */
html[data-contrast="dark"] .intro-headline h2,
html[data-contrast="dark"] .intro-content-panel p,
html[data-contrast="dark"] .intro-content-panel strong {
  color: #ffff00 !important;
}

/* Hide Decorative Backgrounds in High Contrast Mode */
html[data-contrast="dark"] .intro-ambient-bg,
html[data-contrast="dark"] .decorative-shapes {
  display: none !important;
}

/* Accent Lines -> Yellow */
html[data-contrast="dark"] .headline-accent-line,
html[data-contrast="dark"] .intro-content-panel::before {
  background: #ffff00 !important;
  background-color: #ffff00 !important;
  opacity: 1 !important;
}

/* Availability Cards - Force Black Background & Yellow Text */
html[data-contrast="dark"] .availability-card {
  background-color: #000000 !important;
  border: 2px solid #ffff00 !important;
  box-shadow: none !important;
}

/* Text inside Availability Cards */
html[data-contrast="dark"] .availability-text {
  color: #ffff00 !important;
}

/* Option Icon (The Square/Circle) - Force Yellow Outline/BG to be visible */
html[data-contrast="dark"] .option-icon {
  background-color: #000000 !important;
  border: 2px solid #ffff00 !important;
  color: #ffff00 !important;
}

/* Option Icon Decoration (The Dot) */
html[data-contrast="dark"] .option-icon::after {
  background-color: #ffff00 !important;
}

/* Process Step Cards - Force Black Background & Yellow Border */
html[data-contrast="dark"] .process-step-card {
  background-color: #000000 !important;
  background: #000000 !important;
  border: 2px solid #ffff00 !important;
  box-shadow: none !important;
}

/* Text inside Process Step Cards */
html[data-contrast="dark"] .process-step-card h3,
html[data-contrast="dark"] .process-step-card p {
  color: #ffff00 !important;
}

/* Step Number Badge - Black BG, Yellow Text/Border */
html[data-contrast="dark"] .step-number {
  background-color: #000000 !important;
  color: #ffff00 !important;
  border: 2px solid #ffff00 !important;
  box-shadow: none !important;
}

/* Step Number Inner Ring - Hide or merge */
html[data-contrast="dark"] .step-number::after {
  display: none !important;
}

/* Step Icons - Force Yellow */
html[data-contrast="dark"] .step-icon,
html[data-contrast="dark"] .process-step-card .step-icon {
  color: #ffff00 !important;
  stroke: #ffff00 !important;
}

/* Card Icon Wrapper - Ensure transparent */
html[data-contrast="dark"] .card-icon-wrapper {
  background: transparent !important;
  border-color: transparent !important;
}

/* Patient Suitability Section - Force Black Background */
html[data-contrast="dark"] .patient-suitability-section {
  background-color: #000000 !important;
  background: #000000 !important;
}

/* Suitability Grid Item - Black BG, Yellow Border & Text */
html[data-contrast="dark"] .suitability-item {
  background-color: #000000 !important;
  border: 2px solid #ffff00 !important;
  color: #ffff00 !important;
  box-shadow: none !important;
}

html[data-contrast="dark"] .suitability-text {
  color: #ffff00 !important;
}

/* Suitability Panel Icons - Force Yellow */
html[data-contrast="dark"] .panel-icon {
  color: #ffff00 !important;
  stroke: #ffff00 !important;
}

/* Suitability Note - Ensure visibility */
html[data-contrast="dark"] .suitability-note,
html[data-contrast="dark"] .suitability-note p,
html[data-contrast="dark"] .suitability-note strong {
  color: #ffff00 !important;
  background: transparent !important;
}

/* Medical Disclaimer Section - Force Black Background & Yellow Text */
html[data-contrast="dark"] .medical-disclaimer-section,
html[data-contrast="dark"] .disclaimer-container {
  background-color: #000000 !important;
  background: #000000 !important;
  color: #ffff00 !important;
  border: 2px solid #ffff00 !important;
  box-shadow: none !important;
}

html[data-contrast="dark"] .disclaimer-header h2,
html[data-contrast="dark"] .disclaimer-text {
  color: #ffff00 !important;
}

html[data-contrast="dark"] .disclaimer-icon {
  color: #ffff00 !important;
  stroke: #ffff00 !important;
}

/* Easy Steps Section - Force Black Background */
html[data-contrast="dark"] .easy-steps-section {
  background-color: #000000 !important;
  background: #000000 !important;
}

html[data-contrast="dark"] .easy-steps-section .section-title h2,
html[data-contrast="dark"] .easy-steps-section .section-title .sub-title {
  color: #ffff00 !important;
}

/* Brooklyn Location Section - Force Black Background */
html[data-contrast="dark"] .brooklyn-location-section,
html[data-contrast="dark"] .location-card-premium {
  background-color: #000000 !important;
  background: #000000 !important;
  border: 2px solid #ffff00 !important;
  color: #ffff00 !important;
}

html[data-contrast="dark"] .location-title,
html[data-contrast="dark"] .clinic-name,
html[data-contrast="dark"] .address-line {
  color: #ffff00 !important;
}

/* Next Step CTA Section - Force Black Background */
html[data-contrast="dark"] .next-step-cta-section {
  background-color: #000000 !important;
  background: #000000 !important;
}

html[data-contrast="dark"] .cta-title,
html[data-contrast="dark"] .cta-text {
  color: #ffff00 !important;
}

html[data-contrast="dark"] .cta-rectangular-link {
  background-color: #000000 !important;
  color: #ffff00 !important;
  border: 2px solid #ffff00 !important;
}

html[data-contrast="dark"] .cta-rectangular-link:hover,
html[data-contrast="dark"] .cta-rectangular-link:focus {
  background-color: #ffff00 !important;
  color: #000000 !important;
}

/* Disclaimer Items - Force Black Background */
html[data-contrast="dark"] .disclaimer-item {
  background-color: #000000 !important;
  border: 2px solid #ffff00 !important;
  color: #ffff00 !important;
}

html[data-contrast="dark"] .disclaimer-text {
  color: #ffff00 !important;
}

/* Skip Link Fix - Ensure Contrast in Dark Mode */
/* Using Black Background and Yellow Text */
html[data-contrast="dark"] .visually-hidden-focusable:focus,
html[data-contrast="dark"] .visually-hidden-focusable:active {
  background-color: #000000 !important;
  color: #ffff00 !important;
  border: 2px solid #ffff00 !important;
  opacity: 1 !important;
  z-index: 99999 !important;
}

/* Dark contrast for Neighborhoods block */
html[data-contrast="dark"] .neighborhoods-accessibility-block {
  background-color: #000000 !important;
  border: 2px solid #ffff00 !important;
  color: #ffff00 !important;
  box-shadow: none !important;
}

html[data-contrast="dark"] .neighborhoods-intro,
html[data-contrast="dark"] .neighborhood-pill {
  color: #ffff00 !important;
}

html[data-contrast="dark"] .neighborhood-pill {
  background: #000000 !important;
  border: 1px solid #ffff00 !important;
}