@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Tajawal:wght@300;400;500;700&display=swap');

:root {
  --well-band-accent: #2e7d32;
  --well-band-accent-hover: #1b5e20;
  --well-band-vivid: #e65100;
  --well-band-vivid-hover: #ef6c00;
  --well-band-dark: #0a192f;
  --well-band-surface: #112240;
  --well-band-light: #f4f6f8;
  --well-band-sand: #eef2f5;
  --well-text-bright: #ffffff;
  --well-text-dark: #1e293b;
  --well-text-muted: #64748b;
  --well-text-accent: #81c784;
  --well-font-head: 'Cairo', sans-serif;
  --well-font-body: 'Tajawal', sans-serif;
  --well-gradient-hero: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #43a047 100%);
  --well-gradient-cta: linear-gradient(135deg, #e65100 0%, #f57c00 100%);
  --well-shadow-depth: 0 20px 40px -15px rgba(10, 25, 47, 0.35);
  --well-shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --well-radius-pill: 999px;
  --well-radius-soft: 16px;
  --well-pad-scale: 10dvh;
}

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

html {
  scroll-behavior: smooth;
  direction: rtl;
  font-family: var(--well-font-body);
  color: var(--well-text-dark);
  background-color: var(--well-band-light);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* Scroll Progress Bar */
.habit-scroll-tracker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--well-band-vivid);
  z-index: 10000;
  transform-origin: 0 50%;
  animation: habitProgress auto linear;
  animation-timeline: scroll();
}

@keyframes habitProgress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* HEADER PRESET L: Accent Color Band */
.vitality-top-bar {
  background-color: var(--well-band-accent);
  color: var(--well-text-bright);
  padding: 1.25rem 8vw;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.vitality-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.vitality-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--well-text-bright);
  font-family: var(--well-font-head);
  font-weight: 900;
  font-size: 1.5rem;
}

.vitality-brand-logo svg {
  fill: #81c784;
  width: 32px;
  height: 32px;
}

/* Hamburger CSS-only */
.habit-nav-checkbox {
  display: none;
}

.habit-hamburger-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 6px;
}

.habit-hamburger-label span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--well-text-bright);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.vitality-navigation-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.vitality-navigation-links a {
  color: var(--well-text-bright);
  text-decoration: none;
  font-family: var(--well-font-head);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s ease;
}

.vitality-navigation-links a:hover {
  color: #c8e6c9;
}

/* PRESET L: COLOR BANDS */
.band-section-wrapper {
  padding: var(--well-pad-scale) 8vw;
  width: 100%;
}

.band-theme-accent {
  background: var(--well-gradient-hero);
  color: var(--well-text-bright);
}

.band-theme-dark {
  background-color: var(--well-band-dark);
  color: var(--well-text-bright);
}

.band-theme-surface {
  background-color: var(--well-band-surface);
  color: var(--well-text-bright);
}

.band-theme-vivid {
  background: var(--well-gradient-cta);
  color: var(--well-text-bright);
}

.band-theme-sand {
  background-color: var(--well-band-sand);
  color: var(--well-text-dark);
}

.band-theme-white {
  background-color: #ffffff;
  color: var(--well-text-dark);
}

/* HERO PRESET L */
.hero-band-content {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-band-title {
  font-family: var(--well-font-head);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-band-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  max-width: 800px;
  opacity: 0.95;
  font-weight: 400;
}

/* BUTTONS */
.action-pill-button {
  display: inline-block;
  padding: 1.1rem 3rem;
  background-color: var(--well-band-vivid);
  color: var(--well-text-bright);
  text-decoration: none;
  font-family: var(--well-font-head);
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: var(--well-radius-pill);
  box-shadow: var(--well-shadow-depth);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.action-pill-button:hover {
  background-color: var(--well-band-vivid-hover);
  transform: translateY(-3px);
  box-shadow: 0 25px 45px -10px rgba(230, 81, 0, 0.4);
}

.action-pill-button-secondary {
  background-color: var(--well-text-bright);
  color: var(--well-band-accent);
}

.action-pill-button-secondary:hover {
  background-color: #f0f0f0;
}

/* IMAGE BANDS */
.full-width-image-band {
  width: 100%;
  height: 40vh;
  object-fit: cover;
  display: block;
}

/* CONTENT BANDS & COLUMNS */
.quote-band-container {
  display: flex;
  gap: 4rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.quote-band-text {
  flex: 1;
}

.quote-band-text blockquote {
  font-family: var(--well-font-head);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
  border-right: 6px solid var(--well-band-vivid);
  padding-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.quote-band-media {
  flex: 0 0 45%;
}

.quote-band-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--well-radius-soft);
  box-shadow: var(--well-shadow-depth);
}

/* FEATURES PRESET L */
.feature-row-item {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-number-badge {
  flex: 0 0 80px;
  height: 80px;
  background-color: var(--well-band-vivid);
  color: var(--well-text-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--well-font-head);
  font-size: 2.2rem;
  font-weight: 900;
  box-shadow: var(--well-shadow-soft);
}

.feature-info-content h3 {
  font-family: var(--well-font-head);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.feature-info-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* STEPS BAND */
.steps-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1300px;
  margin: 3rem auto 0 auto;
}

.step-card-box {
  background: var(--well-band-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--well-radius-soft);
  text-align: right;
  border-top: 4px solid var(--well-band-vivid);
}

.step-card-number {
  font-family: var(--well-font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--well-band-vivid);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--well-text-bright);
}

.step-card-box p {
  color: #b0bec5;
  font-size: 1rem;
}

/* EXPERT PAGE STYLES */
.expert-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.expert-stat-cell {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  border-radius: var(--well-radius-soft);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.expert-stat-number {
  font-family: var(--well-font-head);
  font-size: 3rem;
  font-weight: 900;
  color: #81c784;
}

.expert-stat-label {
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* RESERVE PAGE STYLES */
.reserve-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.reserve-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reserve-info-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: var(--well-radius-soft);
  box-shadow: var(--well-shadow-soft);
}

.reserve-info-card h3 {
  font-family: var(--well-font-head);
  font-size: 1.3rem;
  color: var(--well-band-accent);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reserve-bullet-list {
  list-style: none;
  margin-top: 1rem;
}

.reserve-bullet-list li {
  position: relative;
  padding-right: 2rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.reserve-bullet-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--well-band-vivid);
  font-weight: bold;
}

.booking-form-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: var(--well-radius-soft);
  box-shadow: var(--well-shadow-depth);
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.booking-form-card h2 {
  font-family: var(--well-font-head);
  font-size: 2rem;
  color: var(--well-band-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.form-group-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--well-text-dark);
}

.form-group-field input[type="text"],
.form-group-field input[type="tel"],
.form-group-field input[type="email"],
.form-group-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--well-font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group-field input:focus,
.form-group-field textarea:focus {
  outline: none;
  border-color: var(--well-band-accent);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--well-text-muted);
  cursor: pointer;
}

.form-checkbox-label input {
  margin-top: 0.25rem;
}

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.contact-email-link {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--well-band-accent);
  text-decoration: none;
  font-weight: 600;
}

/* FAQ SECTION */
.faq-band-stack {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item-box {
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: var(--well-radius-soft);
  box-shadow: var(--well-shadow-soft);
  border-right: 4px solid var(--well-band-accent);
}

.faq-item-box h3 {
  font-family: var(--well-font-head);
  font-size: 1.2rem;
  color: var(--well-band-dark);
  margin-bottom: 0.5rem;
}

.faq-item-box p {
  color: var(--well-text-muted);
  font-size: 0.95rem;
}

/* LEGAL PAGES */
.legal-text-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: var(--well-radius-soft);
  box-shadow: var(--well-shadow-soft);
}

.legal-text-container h1 {
  font-family: var(--well-font-head);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--well-band-dark);
}

.legal-text-container h2 {
  font-family: var(--well-font-head);
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  color: var(--well-band-accent);
}

.legal-text-container p {
  margin-bottom: 1.25rem;
  color: #334155;
  line-height: 1.8;
}

/* FOOTER PRESET L */
.vitality-footer-wrap {
  background-color: var(--well-band-dark);
  color: var(--well-text-bright);
  padding: 4rem 8vw 2rem 8vw;
  margin-top: auto;
  border-top: 4px solid var(--well-band-accent);
}

.vitality-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-nav-links a:hover {
  color: var(--well-text-bright);
}

.footer-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.04);
  padding: 1.25rem 1.75rem;
  border-radius: 8px;
  border-right: 3px solid var(--well-band-vivid);
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-bottom-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* COOKIE BANNER */
.cookie-notice-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--well-band-dark);
  color: var(--well-text-bright);
  padding: 1.5rem 8vw;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 2px solid var(--well-band-vivid);
}

.cookie-notice-banner.active {
  display: flex;
}

.cookie-notice-text {
  font-size: 0.95rem;
  max-width: 800px;
}

.cookie-actions-group {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background-color: var(--well-band-vivid);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--well-radius-pill);
  font-family: var(--well-font-head);
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn-decline {
  background-color: transparent;
  color: #94a3b8;
  border: 1px solid #475569;
  padding: 0.6rem 1.5rem;
  border-radius: var(--well-radius-pill);
  font-family: var(--well-font-head);
  cursor: pointer;
}

/* SCROLL ANIMATIONS */
@supports (animation-timeline: view()) {
  .feature-row-item,
  .step-card-box,
  .quote-band-container,
  .expert-stat-cell {
    animation: fadeInScroll linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }
}

@keyframes fadeInScroll {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .quote-band-container {
    flex-direction: column;
  }
  .quote-band-media {
    width: 100%;
  }
  .steps-band-grid {
    grid-template-columns: 1fr;
  }
  .expert-stats-strip {
    grid-template-columns: 1fr 1fr;
  }
  .reserve-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .habit-hamburger-label {
    display: flex;
  }
  .vitality-navigation-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--well-band-accent);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  .habit-nav-checkbox:checked ~ .vitality-navigation-links {
    display: flex;
  }
  .feature-row-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .cookie-notice-banner {
    flex-direction: column;
    text-align: center;
  }
  .expert-stats-strip {
    grid-template-columns: 1fr;
  }
}