/* ==========================================================
   PERRENIA WELLNESS — Performance Therapies Page Styles
   Extends css/style.css with page-specific components
   ========================================================== */

/* ---- Page Body Override ---- */
.perf-page {
  background: var(--white);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.perf-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e2a2d 0%, var(--dark-teal) 50%, #2c3a3e 100%);
  overflow: hidden;
}

/* Animated background pattern */
.perf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(156,151,110,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(74,96,104,0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(57,74,79,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Diagonal geometric lines */
.perf-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(156,151,110,0.04) 80px,
    rgba(156,151,110,0.04) 81px
  );
  pointer-events: none;
}

.perf-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 45, 0.4);
  z-index: 1;
}

.perf-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.perf-hero-content .section-label {
  color: var(--olive-light);
  margin-bottom: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
}

.section-label.light {
  color: var(--olive-light);
}

.perf-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.perf-hero-heading em {
  font-style: italic;
  color: var(--olive-light);
}

.perf-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.perf-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.perf-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.perf-hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.2); }
}

/* ==========================================================
   INTRO STRIP
   ========================================================== */
.perf-intro-strip {
  background: var(--dark-teal);
  padding: 28px 0;
  border-bottom: 1px solid rgba(156,151,110,0.25);
}

.perf-intro-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.perf-intro-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.perf-intro-item i {
  color: var(--olive-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ==========================================================
   THERAPY SECTIONS — Alternating Layout
   ========================================================== */
.perf-therapy-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.perf-therapy-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(57,74,79,0.1), transparent);
}

.perf-therapy-section:last-child::before {
  display: none;
}

/* Alternate background tint */
.perf-alt {
  background: #faf9f6;
}

.perf-therapy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image Column */
.perf-therapy-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.perf-therapy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.perf-therapy-img:hover img {
  transform: scale(1.04);
}

/* Floating badge on the image */
.perf-therapy-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(30,42,45,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(156,151,110,0.3);
}

.perf-therapy-badge.right {
  left: auto;
  right: 20px;
}

.perf-therapy-badge i {
  color: var(--olive-light);
  font-size: 0.9rem;
}

/* Content Column */
.perf-therapy-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.perf-therapy-content .section-label {
  margin-bottom: 8px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--olive);
}

.section-heading.light {
  color: var(--white);
}

.section-heading.light em {
  color: var(--olive-light);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.section-sub.light {
  color: rgba(255,255,255,0.7);
}

.perf-therapy-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

/* Highlights list */
.perf-therapy-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 20px;
}

.perf-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: 10px;
  border-left: 3px solid var(--olive);
  transition: all var(--trans);
}

.perf-alt .perf-highlight-item {
  background: var(--white);
}

.perf-highlight-item:hover {
  transform: translateX(4px);
  border-left-color: var(--dark-teal);
  box-shadow: 0 4px 16px rgba(57,74,79,0.08);
}

.perf-highlight-item > i {
  color: var(--olive);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.perf-highlight-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.perf-highlight-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.perf-highlight-item span {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Price pills */
.perf-price-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 4px 0 16px;
}

.perf-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--dark-teal);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.perf-price-pill strong {
  font-weight: 700;
  font-size: 1rem;
}

.perf-combo-pill {
  background: var(--olive);
}

.perf-combo-pill i {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* Note callout */
.perf-therapy-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(57,74,79,0.06);
  border-radius: 8px;
  border: 1px solid rgba(57,74,79,0.12);
  font-size: 0.85rem;
  color: var(--text-mid);
  margin: 4px 0 16px;
  font-style: italic;
}

.perf-therapy-note i {
  color: var(--olive);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Multiple buttons row */
.perf-therapy-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ==========================================================
   TRUAGE DIAGNOSTIC — Custom Visual Block
   ========================================================== */
.perf-truage-img {
  background: linear-gradient(145deg, #1e2a2d, var(--dark-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.perf-truage-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 32px;
  text-align: center;
}

.perf-truage-dna {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(156,151,110,0.15);
  border: 2px solid rgba(156,151,110,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.perf-truage-dna i {
  font-size: 2rem;
  color: var(--olive-light);
}

.perf-truage-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.perf-truage-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.perf-truage-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-light);
}

.perf-truage-vs {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.perf-truage-bar {
  width: 200px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.perf-truage-fill {
  height: 100%;
  width: 57%;
  background: linear-gradient(to right, var(--olive), var(--olive-light));
  border-radius: 3px;
  animation: fillBar 2s ease-out 0.5s both;
}

@keyframes fillBar {
  from { width: 0; }
  to { width: 57%; }
}

.perf-truage-caption {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* TruAge pricing grid */
.perf-truage-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 8px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
}

.perf-truage-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 90px;
}

.perf-kit-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.perf-kit-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark-teal);
  font-weight: 400;
}

.perf-truage-price-divider {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 300;
}

.perf-truage-price-bundle {
  flex: 1.4;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 20px;
  background: var(--dark-teal);
  border-radius: 10px;
  color: var(--white);
  text-align: center;
}

.perf-bundle-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.perf-bundle-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.perf-bundle-save {
  font-size: 0.75rem;
  color: var(--olive-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ==========================================================
   COMBO PACKAGES
   ========================================================== */
.perf-packages {
  padding: 100px 0;
  background: var(--dark-teal);
  position: relative;
  overflow: hidden;
}

.perf-packages::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(156,151,110,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(156,151,110,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.perf-packages .text-center {
  position: relative;
}

.perf-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.perf-package-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(156,151,110,0.25);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}

.perf-package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--olive), var(--olive-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

.perf-package-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(156,151,110,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.perf-package-card:hover::before {
  transform: scaleX(1);
}

.perf-package-featured {
  background: rgba(156,151,110,0.12);
  border-color: rgba(156,151,110,0.5);
  transform: translateY(-8px);
}

.perf-package-featured:hover {
  transform: translateY(-14px);
}

.perf-package-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--olive);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px 5px;
  border-radius: 0 0 8px 8px;
}

.perf-package-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(156,151,110,0.15);
  border: 1px solid rgba(156,151,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.perf-package-icon i {
  font-size: 1.4rem;
  color: var(--olive-light);
}

.perf-package-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
}

.perf-package-card > p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.perf-package-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
  flex: 1;
}

.perf-package-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.perf-package-card li i {
  color: var(--olive-light);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.perf-package-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--olive-light);
  font-weight: 400;
  margin-top: 4px;
}

/* Outline light button variant */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--trans);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--dark-teal);
  color: var(--dark-teal);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--trans);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--dark-teal);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.78rem;
  margin-top: 8px;
}

/* ==========================================================
   WALK-IN INFO BAR
   ========================================================== */
.perf-walkin {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 40px 0;
}

.perf-walkin-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.perf-walkin-col {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 200px;
}

.perf-walkin-col > i {
  font-size: 1.6rem;
  color: var(--dark-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.perf-walkin-col div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.perf-walkin-col strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.perf-walkin-col span {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.perf-walkin-divider {
  width: 1px;
  height: 60px;
  background: var(--cream-dark);
  flex-shrink: 0;
}

/* ==========================================================
   CTA BANNER
   ========================================================== */
.perf-cta {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #1e2a2d 0%, var(--dark-teal) 60%, #2c3a3e 100%);
  text-align: center;
  overflow: hidden;
}

.perf-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(156,151,110,0.10) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(156,151,110,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.perf-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,42,45,0.3);
}

.perf-cta-content {
  position: relative;
  z-index: 1;
}

.perf-cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 16px auto 40px;
  line-height: 1.8;
}

.perf-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================
   NAV ACTIVE STATE
   ========================================================== */
.nav-active {
  color: var(--olive) !important;
  font-weight: 600;
}

/* ==========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================== */
.perf-therapy-section .perf-therapy-img,
.perf-therapy-section .perf-therapy-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.perf-therapy-section.perf-visible .perf-therapy-img,
.perf-therapy-section.perf-visible .perf-therapy-content {
  opacity: 1;
  transform: translateY(0);
}

.perf-therapy-section.perf-visible .perf-therapy-content {
  transition-delay: 0.15s;
}

.perf-package-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, background var(--trans), border-color var(--trans), box-shadow var(--trans);
}

.perf-packages.perf-visible .perf-package-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.perf-packages.perf-visible .perf-package-card:nth-child(2) { opacity: 1; transform: translateY(-8px); transition-delay: 0.1s; }
.perf-packages.perf-visible .perf-package-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }

.perf-package-featured {
  transform: translateY(-8px) !important;
}

.perf-walkin-col {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.perf-walkin.perf-visible .perf-walkin-col:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.perf-walkin.perf-visible .perf-walkin-col:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.perf-walkin.perf-visible .perf-walkin-col:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.perf-walkin.perf-visible .perf-walkin-col:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.perf-walkin.perf-visible .perf-walkin-col:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .perf-therapy-inner {
    gap: 48px;
  }

  .perf-packages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .perf-package-featured {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .perf-hero {
    min-height: 85vh;
  }

  .perf-hero-content {
    padding: 100px 20px 70px;
  }

  .perf-therapy-section {
    padding: 70px 0;
  }

  .perf-therapy-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* On mobile, always show image first */
  .perf-alt .perf-therapy-content {
    order: 2;
  }

  .perf-alt .perf-therapy-img {
    order: 1;
  }

  .perf-therapy-img {
    aspect-ratio: 16 / 9;
  }

  .perf-packages {
    padding: 70px 0;
  }

  .perf-packages-grid {
    grid-template-columns: 1fr;
  }

  .perf-package-featured {
    grid-column: auto;
    max-width: none;
    transform: none;
  }

  .perf-packages.perf-visible .perf-package-card:nth-child(2) {
    transform: translateY(0);
  }

  .perf-intro-grid {
    gap: 16px 32px;
    justify-content: flex-start;
  }

  .perf-intro-item {
    white-space: normal;
  }

  .perf-walkin-inner {
    flex-direction: column;
    gap: 24px;
  }

  .perf-walkin-divider {
    width: 80px;
    height: 1px;
  }

  .perf-truage-pricing {
    flex-direction: column;
    align-items: stretch;
  }

  .perf-truage-price-divider {
    text-align: center;
  }

  .perf-truage-price-bundle {
    align-self: center;
    width: 100%;
  }

  .perf-therapy-btns {
    flex-direction: column;
  }

  .perf-therapy-btns .btn {
    text-align: center;
    justify-content: center;
  }

  .perf-cta {
    padding: 80px 0;
  }

  .perf-hero-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .perf-truage-visual {
    padding: 32px 20px;
  }

  .perf-truage-num {
    font-size: 3.5rem;
  }

  .perf-price-pills {
    flex-direction: column;
  }

  .perf-package-card {
    padding: 28px 20px;
  }

  .perf-walkin {
    padding: 32px 0;
  }

  .perf-walkin-col {
    min-width: unset;
    width: 100%;
  }
}
