@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/* ==========================================================================
   GLOBAL VARIABLES & BASE STYLES
   ========================================================================== */
:root {
  --bg-oatmeal: #F7F3ED;
  --bg-card: #FFFFFF;
  --bg-blush: #F9EAE1; 
  --bg-eucalyptus: #E8EFE6;
  --text-forest: #3B4D3F; 
  --text-muted: #586B5C;
  --accent-eucalyptus: #A8BBA2;
  --accent-gold: #D4AF37;
  --border-sage: #DDD5C8;
  --border-blush: #F2D3C4;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-oatmeal);
  color: var(--text-forest);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BANNER
   ========================================================================== */
.top-banner {
  background-color: var(--text-forest);
  color: var(--bg-oatmeal);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-gold);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 28px 0 20px 0;
  text-align: center;
}

.sub-title {
  display: inline-block;
  background-color: var(--bg-eucalyptus);
  color: var(--text-forest);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--accent-eucalyptus);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.main-title {
  font-family: "Outfit", sans-serif;
  font-size: 2.3rem;
  line-height: 1.25;
  color: var(--text-forest);
  font-weight: 700;
  margin-bottom: 16px;
}

.pain-question {
  font-size: 0.8rem;
  font-weight: 700;
  color: #722F37;
  background: rgba(114, 47, 55, 0.05);
  padding: 14px 18px;
  border-left: 4px solid #722F37;
  border-radius: 6px;
  margin-bottom: 12px;
  text-align: center;
}
/* ==========================================
   YOUTUBE VIDEO EMBED
========================================== */
.yt-video-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 30px;
}

.yt-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(47, 93, 87, 0.15);
  border: 1px solid rgba(47, 93, 87, 0.1);
  background: #000;
}

.yt-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.truth-statement {
  font-size: 1.15rem;
  color: var(--text-forest);
  margin-bottom: 24px;
}

.truth-statement strong {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-forest);
}

/* Session Details Box */
.session-description-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sage);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 24px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(59, 77, 63, 0.04);
}

.description-lead {
  font-size: 1.05rem;
  color: var(--text-forest);
  margin-bottom: 12px;
  line-height: 1.5;
}

.description-body {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Price & CTA Block */
.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sage);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(59, 77, 63, 0.06);
  margin-bottom: 24px;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.price-discount {
  color: var(--text-forest);
  font-size: 2.1rem;
  font-weight: 800;
}

.price-badge {
  background-color: var(--bg-blush);
  color: #8B4A3E;
  border: 1px solid var(--border-blush);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* Button & Animations */

.cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 20px 0;
}

/* Primary Button Styling */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px; /* Keeps the button from stretching excessively wide on desktop */
  background: linear-gradient(135deg, var(--text-forest) 0%, #29382C 100%);
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 10px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 14px rgba(59, 77, 63, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(59, 77, 63, 0.35);
}

/* Crossed-out original price styling inside the button */
.btn-price-original {
  text-decoration: line-through;
  color: #fff; /* Soft silver-grey so it looks clearly discounted */
  font-weight: 550;
  font-size: 1.05em;
  opacity: 0.85;
}
.price-original {
  font-size: 1.4rem;
  color: #000;
  text-decoration: line-through; /* Draws the cut line through 2999 */
  font-weight: 650;
  margin-right: 8px;
}
.btn-primary:active {
  transform: scale(0.98);
}

.btn-attention {
  animation: continuousAttention 2.5s infinite ease-in-out;
}

@keyframes continuousAttention {
  0%, 100% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(0.95);
  }
}

/* Responsive Adjustments */
@media (min-width: 650px) {
  .main-title { font-size: 3rem; }
  .hero-section { padding: 36px 0 24px 0; }
  .pain-question { font-size: 1.35rem; }
}

@media (max-width: 480px) {
  .sub-title { font-size: 0.75rem; padding: 6px 12px; }
  .main-title { font-size: 2rem; }
  .pain-question { font-size: 1rem; padding: 12px; }
  .btn-primary { font-size: 1.1rem; padding: 14px 18px; }
}

/* ==========================================================================
   DO YOU FEEL LIKE... SECTION (Styled using reference soft blush theme)
   ========================================================================== */
.stuck-section {
  background: var(--bg-blush);
  border-radius: 16px;
  border: 1px solid var(--border-blush);
  padding: 24px 20px;
  margin-bottom: 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-forest);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* List Items */
.feelings-list {
  list-style: none;
  margin-bottom: 22px;
}

.feeling-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-blush);
  font-size: 1.02rem;
  color: var(--text-forest);
  line-height: 1.5;
}

.feeling-item:last-child {
  border-bottom: none;
}

.feeling-icon {
  color: var(--accent-gold);
  font-size: 0.95rem;
  line-height: 1.5;
  flex-shrink: 0;
  margin-top: 1px;
}

.feeling-item em {
  font-weight: 700;
  color: #722F37;
  font-style: italic;
}

/* Conclusion Banner Box */
.conclusion-box {
  background-color: #FFFFFF;
  border-left: 4px solid var(--text-forest);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-forest);
  text-align: center;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(59, 77, 63, 0.05);
}

/* Responsive Tweaks */
@media (min-width: 650px) {
  .section-title {
    font-size: 2.1rem;
  }
  .stuck-section {
    padding: 32px 28px;
  }
  .feeling-item {
    font-size: 1.08rem;
  }
}
/* ==========================================================================
   SECTION 3: TARGET DESIGN SYSTEM MATCH
   ========================================================================== */

/* Outer Wrapper (Blush Background with proper padding) */
.section-wrapper {
  background-color: #F8EBE6; /* Soft Blush/Oatmeal background */
  padding: 24px 16px;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: #2D3A2E;
}

/* Dark Forest Header Banner (Top Card) */
.top-header-card {
  background-color: #384A3E; /* Dark Forest Green */
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-eyebrow {
  color: #D4AF37; /* Warm Gold */
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.header-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.25;
}

.header-subtitle {
  font-size: 1rem;
  color: #E0E7E1;
  font-weight: 400;
  margin: 0;
}

/* White Floating Main Card */
.content-white-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Pill Badge Style */
.pill-badge {
  display: inline-block;
  background-color: #F8EBE6;
  color: #8C4A3E; /* Soft Terracotta/Brown */
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Pattern List Styling (Stripped Browser Bullets) */
.clean-pattern-list {
  list-style: none; /* Removes default black browser dots */
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.clean-pattern-list li {
  font-size: 1rem;
  color: #384A3E;
  padding: 10px 0;
  border-bottom: 1px dashed #EAE3D9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.clean-pattern-list li:last-child {
  border-bottom: none;
}

.star-icon {
  color: #C59B27;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Inner Dark Forest Callout Box */
.inner-dark-card {
  background-color: #384A3E;
  border-radius: 16px;
  padding: 28px 20px;
  color: #FFFFFF;
  margin-top: 10px;
}

.gold-badge {
  display: inline-block;
  background-color: #C59B27;
  color: #1F2821;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dark-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Q&A Inside Dark Box */
.shift-qa-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}

.qa-old .strike {
  text-decoration: line-through;
  opacity: 0.7;
  font-style: italic;
  font-size: 1rem;
}

.qa-new strong {
  color: #FFFFFF;
  font-size: 1.2rem;
}

.qa-highlight {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 155, 39, 0.4);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 6px;
  color: #E0E7E1;
  font-size: 1.1rem;
}

.qa-highlight strong {
  color: #FFD700;
  font-size: 1.15rem;
  font-family: 'Playfair Display', Georgia, serif;
  display: inline-block;
  margin-top: 4px;
}

/* Responsive Scaling */
@media (min-width: 650px) {
  .header-main-title {
    font-size: 2rem;
  }
  .clean-pattern-list li{
    font-size: 1rem;
  }
  .content-white-card {
    padding: 40px 36px;
  }
  .dark-card-title {
    font-size: 1.75rem;
  }
  .qa-new strong{
  font-size: 0.8rem;
}
}
/* ==========================================================================
   SECTION 4: HORIZONTAL PILL GRID WITH CHECKMARKS & MAIN HEADING
   ========================================================================== */

.shift-pills-section {
  background-color: #F7F3ED; /* Base background */
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Main Heading */
.shift-main-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: #384A3E; /* Dark green tone */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* 2-Column Grid Layout */
.shift-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Horizontal Pill Card (Matches Reference Photo Shape) */
.shift-pill-card {
  background-color: #E8EFE6; /* Light sage green background */
  border: 1px solid #D6E2D4;
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Circular Checkmark Badge */
.check-circle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.check-icon {
  width: 20px;
  height: 20px;
  stroke: #384A3E;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Content Area Inside Pill Card */
.pill-card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-title-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #384A3E;
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
}

.step-num {
  color: #C59B27; /* Gold accent tone */
}

.step-body-text {
  font-size: 0.95rem;
  color: #2D3A2E;
  line-height: 1.55;
  margin: 0;
}

.step-body-text em {
  color: #8C4A3E;
  font-weight: 700;
  font-style: italic;
}

.sub-lead-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #384A3E;
  margin: 4px 0 0 0;
}

.tags-inline-text {
  font-size: 0.88rem;
  color: #8C4A3E;
  line-height: 1.5;
  margin: 4px 0 0 0;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
  .shift-pills-grid {
    grid-template-columns: 1fr; /* Stack vertically on small screens */
  }
  
  .shift-main-heading {
    font-size: 1.75rem;
    margin-bottom: 28px;
  }
}
/* ==========================================================================
   SECTION 5: WHAT CAN WE WORK ON? (CARDS WITH PHOTOS)
   ========================================================================== */

.work-on-section {
  background-color: var(--bg-blush); /* Base blush/oatmeal background */
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Header */
.work-on-header {
  text-align: center;
  margin-bottom: 36px;
}

.work-on-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: #384A3E;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.header-divider {
  width: 50px;
  height: 2px;
  background-color: #D4AF37; /* Gold accent */
  margin: 0 auto;
}

/* 2-Column Grid Layout */
.work-on-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Topic Card */
.topic-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  border: 1px solid #EAE3D9;
}

/* Image Wrapper & Overlay Title */
.topic-image-wrapper {
  position: relative;
  height: 160px;
  width: 100%;
  overflow: hidden;
}

.topic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.topic-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(45, 58, 46, 0.9) 100%);
  color: #FFFFFF;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 16px 10px 16px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.heart-icon {
  color: #D4AF37; /* Gold heart icon */
  font-size: 1rem;
}

/* Card Body Content */
.topic-card-body {
  padding: 16px 18px 20px 18px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.topic-tags {
  font-size: 0.9rem;
  color: #4A5B4E;
  line-height: 1.6;
  margin: 0;
}

/* OR Divider */
.or-divider {
  text-align: center;
  margin: 40px 0 28px 0;
}

.or-divider span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #D4AF37;
  letter-spacing: 2px;
}

/* Closing Takeaway Card */
.bring-whatever-card {
  background-color: #E8EFE6; /* Light Sage Green */
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #D6E2D4;
}

.bring-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: #384A3E;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.bring-subtext {
  font-size: 0.95rem;
  color: #4A5B4E;
  margin: 4px 0;
  line-height: 1.5;
}

/* Takeaway Callout Box */
.takeaway-box {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #C8D8C5;
}

.takeaway-box p {
  font-size: 1rem;
  color: #384A3E;
  margin: 6px 0;
  letter-spacing: 0.5px;
}

.takeaway-box .highlight-shift {
  color: #8C4A3E;
  font-weight: 800;
  font-size: 1.05rem;
}

/* Responsive adjustment for small mobile screens */
@media (max-width: 640px) {
  .work-on-grid {
    grid-template-columns: 1fr; /* Stack on small mobile screens */
  }
  
  .work-on-title {
    font-size: 1.8rem;
  }

  .topic-image-wrapper {
    height: 140px;
  }
}
/* ==========================================================================
   SECTION 6: DARK FOREST GREEN BANNER (REFERENCE MATCH)
   ========================================================================== */

.inner-shift-call-wrapper {
  background-color: var(--bg-oatmeal); /* Base background padding */
  padding: 20px 20px;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Main Dark Forest Green Card Shell */
.call-banner-card {
  background-color: #2F3E33; /* Dark Forest Green */
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  color: #FFFFFF;
}

/* Eyebrow Label */
.call-eyebrow {
  display: block;
  color: #D4AF37; /* Gold Accent */
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Main Title */
.call-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 6px 0;
  letter-spacing: -0.5px;
}

/* Italic Subtitle */
.call-italic-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #E2DDD5;
  margin: 0 0 36px 0;
  font-weight: 400;
}

/* List Container */
.call-list-container {
  max-width: 620px;
  margin: 0 auto 40px auto;
  text-align: left;
}

/* List Item & Dotted Divider Lines */
.call-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.call-list-item:first-child {
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
}

/* Four-Point Gold Star Icon */
.star-icon {
  color: #D4AF37;
  font-size: 1.1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* List Text */
.list-text {
  font-size: 1.05rem;
  color: #F0EDE8;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.list-text em {
  font-style: italic;
  color: #FFFFFF;
  font-weight: 600;
}

/* CTA Button Wrapper & Styling */
.call-cta-wrapper {
  margin-top: 10px;
}

.gold-cta-button {
  display: inline-block;
  background-color: #D4AF37; /* Gold Button */
  color: #1F2821; /* Dark text inside button */
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.gold-cta-button:hover {
  background-color: #E5BF42;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .call-banner-card {
    padding: 36px 20px;
    border-radius: 18px;
  }

  .call-main-title {
    font-size: 1.75rem;
  }

  .call-italic-subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }

  .list-text {
    font-size: 0.95rem;
  }

  .gold-cta-button {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
  }
}
/* ==========================================================================
   SECTION 7: YOUR SESSION INCLUDES (REFERENCE MATCH)
   ========================================================================== */

.includes-section-wrapper {
  background-color: var(--bg-oatmeal); /* Base background */
  padding: 50px 20px;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Heading Styling */
.includes-main-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: #384A3E; /* Dark Forest Green */
  text-align: center;
  margin-bottom: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* List Container */
.includes-list-container {
  display: flex;
  flex-direction: column;
}

/* List Item with Light Dashed Separator */
.includes-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 8px;
  border-bottom: 1px dashed #DCD2C7; /* Soft dashed line like reference photo */
}

.includes-list-item:first-child {
  border-top: 1px dashed #DCD2C7;
}

/* Circle Tick Badge */
.tick-circle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background-color: #F2E3DB; /* Soft blush peach badge fill from photo */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tick SVG Icon */
.tick-icon {
  width: 18px;
  height: 18px;
  stroke: #8C4A3E; /* Soft terracotta/brown tick mark color */
  stroke-width: 2.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* List Item Text */
.includes-item-text {
  font-size: 1.05rem;
  color: #384A3E;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.includes-item-text strong {
  color: #222222;
  font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .includes-section-wrapper {
    padding: 36px 16px;
  }

  .includes-main-heading {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }

  .includes-list-item {
    gap: 14px;
    padding: 14px 4px;
  }

  .tick-circle {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .tick-icon {
    width: 16px;
    height: 16px;
  }

  .includes-item-text {
    font-size: 0.95rem;
  }
}
/* ==========================================================================
   SECTION 8: WHO IS THIS FOR? (ELEVATED AESTHETIC CARDS)
   ========================================================================== */

.who-for-section {
  background-color: #F8EBE6; /* Base blush/oatmeal theme */
  padding: 60px 20px;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Header Area */
.who-for-header {
  text-align: center;
  margin-bottom: 44px;
}

.who-for-eyebrow {
  display: inline-block;
  color: #C59B27; /* Gold Accent */
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.who-for-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.3rem;
  color: #384A3E; /* Dark Forest Green */
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
}

.who-for-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #8C4A3E; /* Terracotta Accent */
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

/* Grid Layout */
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Individual Cards */
.who-card {
  background-color: #FFFFFF;
  border: 1px solid #EAE3D9;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(56, 74, 62, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.who-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(56, 74, 62, 0.07);
}

/* Heart Icon Container */
.heart-badge {
  font-size: 1.1rem;
  color: #8C4A3E; /* Terracotta heart */
  background-color: #F8EBE6;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Card Text */
.who-text {
  font-size: 0.98rem;
  color: #384A3E;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.who-text strong {
  color: #222222;
  font-weight: 700;
}

/* Final Highlighted Card Styling */
.featured-shift-card {
  background-color: #E8EFE6; /* Light Sage Green Background */
  border-color: #C8D8C5;
  grid-column: span 2; /* Spans full width at bottom for impact */
  justify-content: center;
  text-align: center;
  padding: 22px 24px;
}

.featured-shift-card .who-text {
  font-size: 1.05rem;
  color: #384A3E;
}

.featured-shift-card .who-text em {
  font-style: italic;
  font-weight: 800;
  color: #8C4A3E;
}

.gold-heart {
  background-color: #FFFFFF;
  color: #C59B27;
}

/* Responsive adjustment for Mobile */
@media (max-width: 680px) {
  .who-for-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }

  .featured-shift-card {
    grid-column: span 1;
    justify-content: flex-start;
    text-align: left;
  }

  .who-for-title {
    font-size: 1.8rem;
  }

  .who-for-section {
    padding: 40px 16px;
  }
}
/* ==========================================================================
   SECTION 9: PERSPECTIVE vs. DEEPER TRUTH (EDITORIAL AESTHETIC)
   ========================================================================== */

.perspective-section-wrapper {
  background-color: var(--bg-oatmeal); /* Signature blush/oatmeal theme */
  padding: 20px 70px;
  border-radius: 16px;
  max-width: 1000px;
  margin-top: 25px;
  margin-bottom: 25px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Header */
.perspective-header {
  text-align: center;
  margin-bottom: 48px;
}

.perspective-eyebrow {
  display: inline-block;
  color: #C59B27; /* Gold Accent */
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.perspective-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: #384A3E; /* Dark Forest Green */
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
}

.header-accent-line {
  width: 50px;
  height: 2px;
  background-color: #D4AF37;
  margin: 0 auto;
}

/* 3-Card Grid Layout */
.perspective-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Individual Perspective Card */
.perspective-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #EAE3D9;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(56, 74, 62, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.perspective-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(56, 74, 62, 0.08);
}

/* Surface Section (Top Part) */
.surface-view {
  padding: 24px 20px 18px 20px;
  background-color: #FFFFFF;
}

/* Deeper Section (Bottom Part) */
.deeper-view {
  padding: 18px 20px 24px 20px;
  background-color: #F3F6F3; /* Light Sage Green Tint */
  flex-grow: 1;
}

/* Tags Inside Cards */
.view-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.surface-tag {
  background-color: #F8EBE6;
  color: #8C4A3E; /* Terracotta tone */
}

.deeper-tag {
  background-color: #E2ECE0;
  color: #384A3E; /* Dark Forest tone */
}

.view-text {
  font-size: 0.98rem;
  color: #4A5B4E;
  line-height: 1.55;
  margin: 0;
}

.view-text strong {
  color: #1F2821;
  font-weight: 700;
}

/* Connector Arrow Between Top and Bottom halves */
.card-arrow-divider {
  text-align: center;
  background-color: #FFFFFF;
  height: 1px;
  position: relative;
}

.arrow-symbol {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #D4AF37;
  color: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 2;
}

/* Final Takeaway Hero Banner */
.perspective-takeaway-card {
  background-color: #2F3E33; /* Dark Forest Green Banner */
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.takeaway-eyebrow {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: #D4AF37;
  margin: 0 0 16px 0;
  letter-spacing: 0.5px;
}

.takeaway-points-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.negative-point {
  font-size: 0.95rem;
  color: #C8D3C9;
  letter-spacing: 0.5px;
}

.point-separator {
  color: #D4AF37;
}

/* Highlight Box at bottom of Dark Banner */
.takeaway-highlight-box {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  display: inline-block;
  max-width: 600px;
}

.takeaway-final-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin: 0;
}

.takeaway-final-text em {
  color: #D4AF37;
  font-style: italic;
  font-weight: 700;
}

/* ==========================================================================
   SECTION 9: RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablets / Medium Screens */
@media (max-width: 1024px) {
  .perspective-section-wrapper {
    padding: 30px 24px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .perspective-cards-grid {
    gap: 16px;
  }

  .surface-view,
  .deeper-view {
    padding: 20px 16px;
  }
}

/* Small Tablets & Mobile Devices */
@media (max-width: 768px) {
  .perspective-section-wrapper {
    padding: 24px 16px;
    border-radius: 12px;
  }

  .perspective-header {
    margin-bottom: 32px;
  }

  .perspective-title {
    font-size: 1.65rem;
    line-height: 1.3;
  }

  /* Single Column Stack to Maintain Card Readability */
  .perspective-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .perspective-takeaway-card {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .takeaway-eyebrow {
    font-size: 1.3rem;
  }

  .takeaway-points-flex {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .point-separator {
    display: none;
  }

  .takeaway-highlight-box {
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .takeaway-final-text {
    font-size: 1.05rem;
  }
}
/* ==========================================================================
   MEET YOUR MENTOR SECTION (Landing Page Background Integration)
   ========================================================================== */

.mentor-section {
  background-color: var(--bg-eucalyptus);
  border: 1px solid var(--accent-eucalyptus);
  border-radius: 18px;
  padding: 70px 24px;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(59, 77, 63, 0.05);
}

.mentor-header {
  text-align: center;
  margin-bottom: 30px;
}

.mentor-title {
  font-family:'Playfair Display', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-forest);
  letter-spacing: 1px;
  margin-top: -20px;
}

/* Main Card Uses Soft Eucalyptus/Sage Theme BG Instead of White */
.mentor-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  background-color: var(--bg-eucalyptus); /* Matching landing page tint */
  border: 1px solid var(--accent-eucalyptus);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(59, 77, 63, 0.04);
}

/* Dual Photo Gallery Container */
.mentor-gallery-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-bottom: 12px;
  background: transparent;
  border-radius: 12px; /* Removes any plain white background behind photos */
}

/* 2-Column Grid for Images */
.mentor-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.mentor-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--accent-gold);
  display: block;
  box-shadow: 0 6px 18px rgba(59, 77, 63, 0.12);
}

.mentor-badge-gold {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-gold);
  color: #2F2404;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mentor-info {
  text-align: center;
  max-width: 580px;
}

.mentor-name {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--text-forest);
  font-weight: 700;
  margin-bottom: 12px;
}

.mentor-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-forest);
  line-height: 1.5;
  margin-bottom: 14px;
}

.mentor-bio-body p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.mentor-bio-body p:last-child {
  margin-bottom: 0;
}

/* Responsive Mobile Tweaks */
@media (max-width: 520px) {
  .mentor-images-grid {
    grid-template-columns: 1fr;
  }
  
  .mentor-img {
    height: 240px;
  }

  .mentor-badge-gold {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
}
/* ==========================================================================
   SECTION 10: HEALING JOURNEY (EDITORIAL BANNER & CALLOUT)
   ========================================================================== */

.journey-section-wrapper {
  background-color: #F8EBE6; /* Base signature blush theme */
  padding: 60px 20px;
  border-radius: 16px;
  max-width: 920px;
  margin-bottom: 25px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Main Outer Card Container */
.journey-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(56, 74, 62, 0.06);
  border: 1px solid #EAE3D9;
}

/* Image Hero Banner Header */
.journey-hero-banner {
  position: relative;
  padding: 60px 30px;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}

.journey-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.journey-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(31, 40, 33, 0.78) 0%, rgba(47, 62, 51, 0.92) 100%);
  z-index: 2;
}

.journey-banner-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin: 0 auto;
}

.journey-eyebrow {
  display: inline-block;
  color: #D4AF37; /* Gold Accent */
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.journey-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.gold-arch-line {
  width: 60px;
  height: 2px;
  background-color: #D4AF37;
  margin: 0 auto;
}

/* Card Body Content */
.journey-card-body {
  padding: 44px 36px;
}

/* Permission List */
.permission-statements {
  max-width: 580px;
  margin: 0 auto 36px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.permission-item {
  display: flex;
  align-items: left;
  justify-content: left;
  gap: 10px;
}

.soft-dot {
  color: #D4AF37;
  font-size: 1.2rem;
}

.permission-item p {
  font-size: 1.05rem;
  color: #4A5B4E;
  margin: 0;
  font-weight: 400;
  text-align: left;
}

/* Editorial Callout Box */
.shift-callout-box {
  background-color: #F4EFEA; /* Light warm blush tone */
  border: 1px solid #E2DDD5;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.callout-step {
  font-size: 0.95rem;
  color: #8C4A3E; /* Terracotta tone */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.callout-em-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #384A3E; /* Dark Forest Green */
  font-weight: 600;
  margin: 0 0 20px 0;
}

.shift-connector {
  position: relative;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shift-connector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #D6CCC2;
  z-index: 1;
}

.connector-text {
  position: relative;
  z-index: 2;
  background-color: #F4EFEA;
  padding: 0 16px;
  font-size: 0.9rem;
  color: #728275;
  font-style: italic;
}

.callout-final-shift {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #384A3E;
  letter-spacing: 1px;
  margin: 12px 0 0 0;
}

/* Mobile Responsive */
@media (max-width: 680px) {
  .journey-section-wrapper {
    padding: 40px 16px;
  }

  .journey-hero-banner {
    padding: 44px 20px;
  }

  .journey-title {
    font-size: 1.75rem;
  }

  .journey-card-body {
    padding: 28px 18px;
  }

  .permission-item p {
    font-size: 0.95rem;
  }

  .callout-em-title {
    font-size: 1.2rem;
  }

  .callout-final-shift {
    font-size: 1.15rem;
  }
}
/* ==========================================================================
   SECTION 11: BOOKING & PRICING CARD
   ========================================================================== */

.booking-section-wrapper {
  background-color: var(--bg-oatmeal); 
  padding: 20px 20px;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Booking Main Outer Box */
.booking-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  border: 2px solid #D4AF37; /* Gold Frame Accent */
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(56, 74, 62, 0.08);
  position: relative;
}

/* Limited Slots Badge */
.slots-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #F8EBE6;
  border: 1px solid #E5C398;
  color: #8C4A3E; /* Terracotta tone */
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #8C4A3E;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Titles */
.booking-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem;
  color: #384A3E; /* Dark Forest Green */
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.booking-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #434d45;
  letter-spacing: 1.5px;
  margin: 0 0 28px 0;
}

.pricing-divider {
  width: 60px;
  height: 2px;
  background-color: #E2DDD5;
  margin: 0 auto 32px auto;
}

/* Pricing Grid Layout */
.pricing-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background-color: #FAF6F2;
  border-radius: 18px;
  padding: 30px 24px;
  margin-bottom: 36px;
  border: 1px solid #EAE3D9;
}

.price-box {
  flex: 1;
}

.location-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #434d45;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

/* Price Strike-through and Discount */
.price-strike-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 24px;
  margin-bottom: 4px;
}

.original-price {
  font-size: 1.2rem;
  color: #434d45;
  text-decoration: line-through;
  font-weight: 600;
}

.discount-badge {
  background-color: #8C4A3E;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.intl-subtext {
  font-size: 0.75rem;
  color: #888888;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Main Display Price */
.current-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #384A3E;
  line-height: 1;
}

.currency {
  font-size: 2rem;
  vertical-align: super;
  margin-right: 2px;
  font-weight: 600;
}

/* Vertical Line Separator */
.pricing-vert-line {
  width: 1px;
  height: 80px;
  background-color: #D6CCC2;
}

/* CTA Button & Guarantee */
.booking-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #D4AF37; /* Gold Button */
  color: #1F2821;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 20px 44px;
  border-radius: 14px;
  text-decoration: none;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.booking-btn:hover {
  background-color: #E5BF42;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  stroke: #1F2821;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.booking-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.secure-text {
  font-size: 0.88rem;
  color: #728275;
  margin-top: 16px;
  font-weight: 500;
}

/* Responsive Styles for Mobile */
@media (max-width: 640px) {
  .booking-card {
    padding: 36px 20px;
  }

  .booking-title {
    font-size: 1.6rem;
  }

  .pricing-grid {
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px;
  }

  .pricing-vert-line {
    width: 80%;
    height: 1px;
  }

  .current-price {
    font-size: 2.8rem;
  }

  .booking-btn {
    font-size: 0.95rem;
    padding: 16px 24px;
  }
}
/* ==========================================================================
   SECTION 12: INTAKE FORM (ELEGANT & AESTHETIC)
   ========================================================================== */

.intake-section-wrapper {
  background-color: #F8EBE6; /* Base blush/oatmeal theme */
  padding: 60px 20px;
  max-width: 900px;
  margin-bottom: 25px;
  border-radius: 16px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Outer Form Box */
.intake-form-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #EAE3D9;
  padding: 50px 40px;
  box-shadow: 0 16px 40px rgba(56, 74, 62, 0.05);
}

/* Header */
.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-eyebrow {
  display: inline-block;
  color: #C59B27; /* Gold Accent */
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.3rem;
  color: #384A3E; /* Dark Forest Green */
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 6px 0;
}

.form-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #8C4A3E; /* Terracotta tone */
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.form-header-line {
  width: 50px;
  height: 2px;
  background-color: #D4AF37;
  margin: 0 auto;
}

/* Form Layout */
.intake-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* 3-Column Personal Details Grid */
.form-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Field Groups */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label,
.section-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #384A3E;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.required-star {
  color: #8C4A3E;
}

.sub-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #728275;
  text-transform: none;
}

/* Input Fields & Textareas Styling */
.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"],
.input-group textarea {
  width: 100%;
  background-color: #FAF6F2; /* Warm subtle field fill */
  border: 1px solid #E2DDD5;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.98rem;
  color: #222222;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #D4AF37; /* Gold Focus Border */
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.input-group textarea {
  resize: none; /* Hides the resize handle in the bottom right corner */
  width: 100%;
  background-color: #FAF6F2;
  border: 1px solid #E2DDD5;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.98rem;
  color: #222222;
  font-family: inherit;
  box-sizing: border-box;
  line-height: 1.5;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

/* Checkbox Section Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

/* Custom Interactive Checkboxes */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #FAF6F2;
  border: 1px solid #EAE3D9;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}

.custom-checkbox:hover {
  border-color: #C8D8C5;
  background-color: #F3F6F3;
}

/* Hide default browser checkbox */
.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom Checkbox Box */
.checkbox-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-color: #FFFFFF;
  border: 1.5px solid #C5BBAE;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.check-mark {
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 800;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s ease;
}

/* Active Checked State */
.custom-checkbox input[type="checkbox"]:checked ~ .checkbox-box {
  background-color: #384A3E; /* Forest Green fill on check */
  border-color: #384A3E;
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkbox-box .check-mark {
  opacity: 1;
  transform: scale(1);
}

.custom-checkbox input[type="checkbox"]:checked ~ .checkbox-text {
  font-weight: 700;
  color: #1F2821;
}

.checkbox-text {
  font-size: 0.92rem;
  color: #4A5B4E;
}

/* Submit Block */
.form-submit-block {
  text-align: center;
  margin-top: 16px;
}

.proceed-btn {
  background-color: #D4AF37; /* Gold Button */
  color: #1F2821;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 18px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.28);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.proceed-btn:hover {
  background-color: #E5BF42;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.38);
}
.btn-price-org {
  text-decoration: line-through;
  color: #000; /* Soft silver-grey so it looks clearly discounted */
  font-weight: 550;
  font-size: 1.05em;
  opacity: 0.85;
}
.post-submit-note {
  font-size: 0.88rem;
  color: #728275;
  margin-top: 16px;
  line-height: 1.5;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .intake-form-card {
    padding: 32px 20px;
    border-radius: 18px;
  }

  .form-grid-3col {
    grid-template-columns: 1fr; /* Stack inputs vertically on mobile */
  }

  .checkbox-grid {
    grid-template-columns: 1fr; /* Single column checkboxes on mobile */
  }

  .form-main-title {
    font-size: 1.75rem;
  }

  .proceed-btn {
    font-size: 0.95rem;
    padding: 16px 20px;
  }
}
/* ==========================================================================
   FOOTER SECTION: HEAL WITH HEER™ (LUXURY DARK GREEN & GOLD)
   ========================================================================== */

.heal-footer-wrapper {
  background-color: #1F2821; /* Deep Dark Forest Green Background */
  color: #FFFFFF;
  padding: 70px 20px 40px 20px;
  margin-bottom: 25px;
  border-radius: 16px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  border-top: 3px solid #D4AF37; /* Top Gold Border Accent */
}

.footer-container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* Brand Title & Eyebrow */
.brand-eyebrow {
  display: block;
  color: #D4AF37; /* Gold Accent */
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.brand-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin: 0 0 16px 0;
}

.footer-divider-line {
  width: 50px;
  height: 2px;
  background-color: #D4AF37;
  margin: 0 auto 36px auto;
}

/* 3 Core Pillars */
.footer-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.pillar-item {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #E2DDD5;
  letter-spacing: 1px;
  margin: 0;
}

.pillar-dot {
  color: #D4AF37;
  font-size: 1rem;
}

/* Offer Inner Box */
.footer-offer-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle Gold Border */
  border-radius: 20px;
  padding: 36px 28px;
  margin-bottom: 50px;
}

.offer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: #D4AF37;
  margin: 0 0 10px 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.offer-description {
  font-size: 0.95rem;
  color: #C8D3C9;
  max-width: 540px;
  margin: 0 auto 20px auto;
  line-height: 1.5;
}
.btn-price-original {
  text-decoration: line-through;
  color: #fff; /* Soft silver-grey so it looks clearly discounted */
  font-weight: 550;
  font-size: 1.05em;
  opacity: 0.85;
}
.offer-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.price-sep {
  color: #D4AF37;
  font-weight: 300;
  margin: 0 8px;
}

/* CTA Button */
.footer-cta-btn {
  display: inline-block;
  background-color: #D4AF37; /* Gold Button */
  color: #1F2821;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

.footer-cta-btn:hover {
  background-color: #E5BF42;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
}

/* Disclaimer & Legal Text */
.footer-disclaimer-block {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  max-width: 720px;
  margin: 0 auto;
}

.disclaimer-text {
  font-size: 0.78rem;
  color: #8E9B90;
  line-height: 1.6;
  margin: 0 0 16px 0;
  font-weight: 400;
}

.disclaimer-text strong {
  color: #A9B7AB;
}

.copyright-text {
  font-size: 0.75rem;
  color: #6C7A6E;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 680px) {
  .heal-footer-wrapper {
    padding: 50px 16px 30px 16px;
  }

  .brand-title {
    font-size: 2rem;
  }

  .footer-pillars {
    flex-direction: column;
    gap: 8px;
  }

  .pillar-dot {
    display: none;
  }

  .pillar-item {
    font-size: 0.92rem;
  }

  .footer-offer-card {
    padding: 28px 18px;
  }

  .offer-title {
    font-size: 1.35rem;
  }

  .offer-price {
    font-size: 1.75rem;
  }

  .footer-cta-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}