:root {
  --lifestyle-canvas-bg: #F8F9F5;
  --lifestyle-card-surface: #FFFFFF;
  --lifestyle-primary-accent: #1E5631;
  --lifestyle-emerald-deep: #11361D;
  --lifestyle-gold-vibe: #D4A373;
  --lifestyle-gold-hover: #BC8A5F;
  --lifestyle-charcoal-ink: #2B2D42;
  --lifestyle-muted-smoke: #6C757D;
  --lifestyle-border-soft: rgba(30, 86, 49, 0.12);
  --lifestyle-glow-gradient: linear-gradient(135deg, #1E5631 0%, #11361D 100%);
  --lifestyle-gold-gradient: linear-gradient(135deg, #D4A373 0%, #FAEDCD 100%);
  --lifestyle-header-tint: rgba(248, 249, 245, 0.95);

  --font-heading: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;

  --lifestyle-radius-soft: 18px;
  --lifestyle-radius-pill: 999px;

  --lifestyle-shadow-raised: 0 10px 30px rgba(30, 86, 49, 0.08);
  --lifestyle-shadow-deep: 0 18px 40px rgba(0, 0, 0, 0.12);
}

@keyframes progress-grow {
  to {
    width: 100%;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--lifestyle-canvas-bg);
  color: var(--lifestyle-charcoal-ink);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--lifestyle-emerald-deep);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Scroll Progress Line */
.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--lifestyle-gold-vibe);
  z-index: 10000;
  width: 0%;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

/* Header & Topbar */
.lifestyle-topbar {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: var(--lifestyle-header-tint);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lifestyle-border-soft);
  padding: 1rem 1.5rem;
}

.topbar-inner-frame {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lifestyle-brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--lifestyle-primary-accent);

  .brand-title-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lifestyle-emerald-deep);
  }

  .brand-symbol-icon {
    stroke: var(--lifestyle-primary-accent);
  }
}

.lifestyle-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-item-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lifestyle-charcoal-ink);

  &:hover, &.active-link {
    color: var(--lifestyle-primary-accent);
  }
}

.nav-cta-pill {
  background: var(--lifestyle-primary-accent);
  color: #FFFFFF !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--lifestyle-radius-pill);

  &:hover {
    background: var(--lifestyle-emerald-deep);
  }
}

.mobile-hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;

  span {
    width: 26px;
    height: 3px;
    background-color: var(--lifestyle-emerald-deep);
    border-radius: 3px;
    transition: all 0.3s ease;
  }
}

/* Scroll Reveal */
.reveal {
  animation: slide-up 0.6s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}

/* Hero Section (Index) */
.habit-hero-stage {
  min-height: 82dvh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 10dvh 1.5rem;
  position: relative;
}

.habit-hero-caption {
  max-width: 720px;
  margin-right: auto;
  margin-left: 0;
  color: #FFFFFF;
}

.hero-badge-tag {
  display: inline-block;
  background: rgba(212, 163, 115, 0.25);
  border: 1px solid var(--lifestyle-gold-vibe);
  color: #FAEDCD;
  padding: 0.35rem 1rem;
  border-radius: var(--lifestyle-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-main-heading {
  font-size: 2.75rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.hero-description-paragraph {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.habit-action-pill {
  display: inline-block;
  background: var(--lifestyle-gold-vibe);
  color: var(--lifestyle-emerald-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.9rem 2.25rem;
  border-radius: var(--lifestyle-radius-pill);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);

  &:hover {
    background: var(--lifestyle-gold-hover);
    color: #FFFFFF;
  }
}

/* Bento Section */
.vital-bento-section {
  padding: 10dvh 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-sub-label {
  color: var(--lifestyle-gold-vibe);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.section-main-title {
  font-size: 2.1rem;
  color: var(--lifestyle-emerald-deep);
}

.vital-bento-cluster {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.vital-bento-item-lg {
  grid-column: span 4;
  background: var(--lifestyle-glow-gradient);
  color: #FFFFFF;
  padding: 2.5rem;
  border-radius: var(--lifestyle-radius-soft);
  box-shadow: var(--lifestyle-shadow-raised);

  .bento-box-heading {
    color: #FFFFFF;
    font-size: 1.6rem;
    margin: 1rem 0 0.75rem 0;
  }

  .bento-box-desc {
    color: rgba(255, 255, 255, 0.88);
  }

  .bento-icon-badge {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    stroke: #FFFFFF;
  }
}

.vital-bento-item-sm {
  grid-column: span 2;
  background: var(--lifestyle-card-surface);
  border: 1px solid var(--lifestyle-border-soft);
  padding: 2.5rem 1.75rem;
  border-radius: var(--lifestyle-radius-soft);
  box-shadow: var(--lifestyle-shadow-raised);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;

  .guide-stat-value {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--lifestyle-primary-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .guide-stat-label {
    font-size: 0.95rem;
    color: var(--lifestyle-muted-smoke);
  }
}

.vital-bento-item-md {
  grid-column: span 3;
  background: var(--lifestyle-card-surface);
  border: 1px solid var(--lifestyle-border-soft);
  padding: 2rem;
  border-radius: var(--lifestyle-radius-soft);
  box-shadow: var(--lifestyle-shadow-raised);

  .bento-circle-icon {
    width: 44px;
    height: 44px;
    background: rgba(30, 86, 49, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lifestyle-primary-accent);
    margin-bottom: 1rem;
  }

  .bento-box-heading {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .bento-box-desc {
    color: var(--lifestyle-muted-smoke);
    font-size: 0.98rem;
  }
}

.vital-bento-item-full {
  grid-column: span 6;
  background: var(--lifestyle-card-surface);
  border: 2px solid var(--lifestyle-gold-vibe);
  padding: 2rem;
  border-radius: var(--lifestyle-radius-soft);
  box-shadow: var(--lifestyle-shadow-raised);
}

.bento-full-flex {
  display: flex;
  align-items: center;
  gap: 1.5rem;

  .bento-full-icon {
    color: var(--lifestyle-gold-vibe);
    flex-shrink: 0;
  }

  .bento-box-heading {
    font-size: 1.3rem;
    margin-bottom: 0.35rem;
  }

  .bento-box-desc {
    color: var(--lifestyle-muted-smoke);
  }
}

/* Visual Quote Stage */
.visual-quote-stage {
  padding: 12dvh 1.5rem;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #FFFFFF;
}

.quote-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.quote-headline-text {
  font-size: 2rem;
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.quote-sub-author {
  color: var(--lifestyle-gold-vibe);
  font-weight: 600;
  font-size: 1rem;
}

/* Steps Section */
.way-steps-section {
  padding: 10dvh 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.way-steps-holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.way-step-card {
  background: var(--lifestyle-card-surface);
  padding: 2.25rem;
  border-radius: var(--lifestyle-radius-soft);
  border: 1px solid var(--lifestyle-border-soft);
  box-shadow: var(--lifestyle-shadow-raised);
  position: relative;
  overflow: hidden;
}

.way-number-watermark {
  position: absolute;
  top: -15px;
  left: 15px;
  font-size: 5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--lifestyle-primary-accent);
  opacity: 0.08;
  user-select: none;
}

.step-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.step-card-desc {
  color: var(--lifestyle-muted-smoke);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Action CTA Banner */
.action-strip-banner {
  padding: 8dvh 1.5rem;
  background: var(--lifestyle-glow-gradient);
  color: #FFFFFF;
  text-align: center;
}

.action-strip-inner {
  max-width: 700px;
  margin: 0 auto;
}

.action-strip-headline {
  font-size: 2.1rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.action-strip-sub {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.action-strip-button {
  display: inline-block;
  background: var(--lifestyle-gold-vibe);
  color: var(--lifestyle-emerald-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.9rem 2.25rem;
  border-radius: var(--lifestyle-radius-pill);

  &:hover {
    background: #FFFFFF;
  }
}

/* Expert Page Specifics */
.expert-hero-dark {
  background: var(--lifestyle-emerald-deep);
  color: #FFFFFF;
  padding: 8dvh 1.5rem;
  text-align: center;
}

.expert-hero-inner {
  max-width: 750px;
  margin: 0 auto;

  .hero-main-heading {
    color: #FFFFFF;
    font-size: 2.4rem;
  }
}

.expert-bio-stage {
  padding: 10dvh 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.expert-bio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.expert-image-frame {
  width: 100%;
  border-radius: var(--lifestyle-radius-soft);
  box-shadow: var(--lifestyle-shadow-deep);
  display: block;
  object-fit: cover;
  max-height: 420px;
}

.expert-bio-paragraph {
  margin-top: 1rem;
  color: var(--lifestyle-muted-smoke);
}

.expert-metrics-section {
  padding: 8dvh 1.5rem 10dvh 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.expert-metrics-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.metric-bento-card {
  background: var(--lifestyle-card-surface);
  border: 1px solid var(--lifestyle-border-soft);
  padding: 2rem 1.5rem;
  border-radius: var(--lifestyle-radius-soft);
  text-align: center;
  box-shadow: var(--lifestyle-shadow-raised);

  .metric-num-display {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lifestyle-gold-vibe);
    display: block;
    margin-bottom: 0.25rem;
  }

  .metric-title-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .metric-desc-text {
    font-size: 0.88rem;
    color: var(--lifestyle-muted-smoke);
  }
}

/* Booking & Forms */
.booking-stage-container {
  max-width: 1100px;
  margin: -4dvh auto 8dvh auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}

.booking-info-card {
  background: var(--lifestyle-card-surface);
  padding: 2rem;
  border-radius: var(--lifestyle-radius-soft);
  border: 1px solid var(--lifestyle-border-soft);
  box-shadow: var(--lifestyle-shadow-raised);
  margin-bottom: 1.5rem;

  &:last-child {
    margin-bottom: 0;
  }
}

.booking-feature-list {
  list-style: none;
  margin-top: 1.25rem;

  li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;

    .list-dot {
      width: 24px;
      height: 24px;
      background: var(--lifestyle-gold-vibe);
      color: #FFFFFF;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: bold;
    }
  }
}

.contact-email-link {
  color: var(--lifestyle-primary-accent);
  font-weight: 700;
  direction: ltr;
  display: inline-block;
}

.booking-form-box {
  background: var(--lifestyle-card-surface);
  padding: 2.5rem;
  border-radius: var(--lifestyle-radius-soft);
  box-shadow: var(--lifestyle-shadow-deep);
  border: 1px solid var(--lifestyle-border-soft);
}

.form-title-heading {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--lifestyle-emerald-deep);
}

.form-field-group {
  margin-bottom: 1.25rem;
}

.form-input-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--lifestyle-charcoal-ink);
}

.booking-input-field,
.booking-textarea-field {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #D0D5DD;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: #FAFAFA;
  transition: border-color 0.3s;

  &:focus {
    outline: none;
    border-color: var(--lifestyle-primary-accent);
    background-color: #FFFFFF;
  }
}

.form-check-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.booking-checkbox {
  margin-top: 0.25rem;
  accent-color: var(--lifestyle-primary-accent);
}

.booking-check-label {
  font-size: 0.88rem;
  color: var(--lifestyle-muted-smoke);

  a {
    color: var(--lifestyle-primary-accent);
    text-decoration: underline;
  }
}

.booking-submit-button {
  width: 100%;
  background: var(--lifestyle-primary-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.9rem;
  border: none;
  border-radius: var(--lifestyle-radius-pill);
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 0.5rem;

  &:hover {
    background: var(--lifestyle-emerald-deep);
  }
}

/* FAQ Accordion */
.faq-accordion-section {
  padding: 6dvh 1.5rem 10dvh 1.5rem;
  max-width: 850px;
  margin: 0 auto;
}

.faq-item-details {
  background: var(--lifestyle-card-surface);
  border: 1px solid var(--lifestyle-border-soft);
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
}

.faq-question-summary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--lifestyle-emerald-deep);
  cursor: pointer;
}

.faq-answer-text {
  margin-top: 0.75rem;
  color: var(--lifestyle-muted-smoke);
  font-size: 0.95rem;
}

/* Legal & Thank Pages */
.legal-doc-stage {
  padding: 8dvh 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
}

.legal-document-box {
  background: var(--lifestyle-card-surface);
  padding: 3rem;
  border-radius: var(--lifestyle-radius-soft);
  box-shadow: var(--lifestyle-shadow-raised);
  border: 1px solid var(--lifestyle-border-soft);
}

.legal-main-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.legal-update-date {
  color: var(--lifestyle-muted-smoke);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--lifestyle-border-soft);
  padding-bottom: 1rem;
}

.legal-paragraph-box {
  margin-bottom: 2rem;

  p {
    margin-bottom: 0.75rem;
    color: var(--lifestyle-charcoal-ink);
  }
}

.legal-section-heading {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--lifestyle-emerald-deep);
}

.thank-salute-stage {
  padding: 10dvh 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thank-salute-box {
  background: var(--lifestyle-card-surface);
  padding: 3.5rem 2rem;
  border-radius: var(--lifestyle-radius-soft);
  box-shadow: var(--lifestyle-shadow-deep);
  border: 1px solid var(--lifestyle-border-soft);
}

.thank-check-icon {
  color: var(--lifestyle-primary-accent);
  margin-bottom: 1rem;
}

.thank-headline {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thank-subtext {
  color: var(--lifestyle-muted-smoke);
  font-size: 1.05rem;
}

.thank-visual-media {
  max-width: 100%;
  border-radius: 12px;
  max-height: 250px;
  object-fit: cover;
}

/* Footer */
.lifestyle-footer {
  background: var(--lifestyle-emerald-deep);
  color: #FFFFFF;
  padding-top: 5dvh;
}

.footer-inner-frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3dvh 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.footer-brand-column {
  .lifestyle-brand-link {
    color: #FFFFFF;
    margin-bottom: 1rem;

    .brand-title-text {
      color: #FFFFFF;
    }
  }
}

.footer-disclaimer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  max-width: 550px;
  margin-top: 0.75rem;
}

.footer-nav-heading {
  color: var(--lifestyle-gold-vibe);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;

  &:hover {
    color: var(--lifestyle-gold-vibe);
  }
}

.footer-copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner Popup */
.cookie-banner-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--lifestyle-charcoal-ink);
  color: #FFFFFF;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
}

.cookie-content-box {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-notice-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}

.cookie-buttons-group {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept-btn {
  background: var(--lifestyle-gold-vibe);
  color: var(--lifestyle-emerald-deep);
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: var(--lifestyle-radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
}

.cookie-decline-btn {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.55rem 1.25rem;
  border-radius: var(--lifestyle-radius-pill);
  font-family: var(--font-heading);
  cursor: pointer;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .vital-bento-cluster {
    grid-template-columns: repeat(2, 1fr);
  }

  .vital-bento-item-lg,
  .vital-bento-item-sm,
  .vital-bento-item-md,
  .vital-bento-item-full {
    grid-column: span 2;
  }

  .way-steps-holder {
    grid-template-columns: 1fr;
  }

  .expert-bio-split {
    grid-template-columns: 1fr;
  }

  .expert-metrics-quad {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-stage-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-main-heading {
    font-size: 2rem;
  }

  .mobile-hamburger-btn {
    display: flex;
  }

  .lifestyle-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--lifestyle-card-surface);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--lifestyle-border-soft);
  }

  #mobile-nav-toggle:checked ~ .lifestyle-nav-menu {
    display: flex;
  }

  .cookie-content-box {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner-frame {
    grid-template-columns: 1fr;
  }
}