:root {
  --nutri-accent-color: #ff523b;
  --nutri-accent-hover: #e03e27;
  --nutri-bg-primary: #fffbf7;
  --nutri-bg-secondary: #11141a;
  --nutri-bg-surface: #ffffff;
  --nutri-text-main: #2b2b2b;
  --nutri-text-muted: #6e6e6e;
  --nutri-border-glow: rgba(255, 82, 59, 0.2);
  --nutri-gradient-spark: linear-gradient(135deg, #ff523b 0%, #ff8c42 100%);
  --nutri-font-display: 'Oswald', 'Noto Sans Devanagari', sans-serif;
  --nutri-font-body: 'Poppins', 'Noto Sans Devanagari', sans-serif;
  --nutri-radius: 16px;
  --nutri-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--nutri-font-body);
  background-color: var(--nutri-bg-primary);
  color: var(--nutri-text-main);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--nutri-font-display);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--nutri-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--nutri-radius);
}

/* Scroll-driven Progress Indicator */
.nutri-scroll-tracker {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: var(--nutri-gradient-spark);
  width: 0;
  z-index: 10000;
  animation: nutri-progress-bar linear;
  animation-timeline: scroll();
}

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

/* Header & Navigation (Preset C: Accent Background) */
.nutri-navbar-wrapper {
  background-color: var(--nutri-accent-color);
  color: #ffffff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.nutri-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--nutri-font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
}

.nutri-brand-logo svg {
  fill: #ffffff;
  width: 32px;
  height: 32px;
}

.nutri-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nutri-nav-links a {
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nutri-nav-links a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* Burger Menu (CSS-only) */
.nutri-burger-checkbox {
  display: none;
}

.nutri-burger-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nutri-burger-trigger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: var(--nutri-transition);
}

/* Hero Section (Preset C - Bold Typo & CSS Shapes) */
.nutri-hero-canvas {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 10% 20%, rgba(255, 82, 59, 0.05) 0%, rgba(255, 140, 66, 0.05) 90.1%);
  overflow: hidden;
  padding: 6dvh 2rem;
}

.nutri-hero-bg-num {
  position: absolute;
  right: -5%;
  bottom: -5%;
  font-size: 25rem;
  font-family: var(--nutri-font-display);
  font-weight: 900;
  color: var(--nutri-accent-color);
  opacity: 0.05;
  user-select: none;
  pointer-events: none;
}

.nutri-hero-shape-decorator {
  position: absolute;
  right: 10%;
  top: 20%;
  width: 300px;
  height: 300px;
  background: var(--nutri-gradient-spark);
  border-radius: 43% 57% 70% 30% / 30% 45% 55% 70%;
  opacity: 0.15;
  animation: blob-bounce 12s infinite ease-in-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes blob-bounce {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(30px, -20px); border-radius: 50% 40% 60% 50% / 40% 60% 30% 70%; }
}

.nutri-hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.nutri-hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nutri-badge-mini {
  align-self: flex-start;
  background-color: var(--nutri-border-glow);
  color: var(--nutri-accent-color);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nutri-hero-headline {
  font-size: 3.5rem;
  color: var(--nutri-bg-secondary);
}

.nutri-hero-headline span {
  color: var(--nutri-accent-color);
}

.nutri-hero-subtext {
  font-size: 1.2rem;
  color: var(--nutri-text-muted);
}

.nutri-cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--nutri-gradient-spark);
  color: #ffffff;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(255, 82, 59, 0.3);
  align-self: flex-start;
  font-size: 1.1rem;
}

.nutri-cta-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 82, 59, 0.4);
}

/* Feature Grid Section (Preset C: Big Numbers) */
.nutri-features-segment {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8dvh 2rem;
}

.nutri-segment-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

.nutri-features-block-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.nutri-feature-num-card {
  background-color: var(--nutri-bg-surface);
  padding: 3rem 2rem;
  border-radius: var(--nutri-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--nutri-transition);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--nutri-accent-color);
}

.nutri-feature-num-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.nutri-card-giant-number {
  font-family: var(--nutri-font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--nutri-accent-color);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.nutri-card-info-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--nutri-bg-secondary);
}

.nutri-card-info-summary {
  color: var(--nutri-text-muted);
}

/* Diagonal Content Section (Preset C Diagonal Clip Path) */
.nutri-diagonal-showcase {
  background-color: var(--nutri-bg-secondary);
  color: #ffffff;
  padding: 12dvh 2rem;
  clip-path: polygon(0 6dvh, 100% 0, 100% calc(100% - 6dvh), 0 100%);
  position: relative;
}

.nutri-diagonal-showcase::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.nutri-diagonal-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.nutri-diagonal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nutri-diagonal-content h2 {
  font-size: 2.8rem;
  color: #ffffff;
}

.nutri-diagonal-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

.nutri-diagonal-media img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 4px solid rgba(255,255,255,0.1);
}

/* Process Timeline (Preset C: Horizontal Steps with solid line) */
.nutri-process-flow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8dvh 2rem;
}

.nutri-flow-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
}

.nutri-flow-container::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 4px;
  background-color: var(--nutri-accent-color);
  z-index: 1;
}

.nutri-flow-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.nutri-flow-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-family: var(--nutri-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--nutri-transition);
}

.nutri-flow-step:nth-child(odd) .nutri-flow-circle {
  background-color: var(--nutri-accent-color);
  color: #ffffff;
  border: 4px solid var(--nutri-bg-primary);
  box-shadow: 0 0 0 4px var(--nutri-accent-color);
}

.nutri-flow-step:nth-child(even) .nutri-flow-circle {
  background-color: var(--nutri-bg-primary);
  color: var(--nutri-accent-color);
  border: 4px solid var(--nutri-accent-color);
  box-shadow: 0 0 0 4px var(--nutri-bg-primary);
}

.nutri-flow-step:hover .nutri-flow-circle {
  transform: scale(1.1);
}

.nutri-flow-heading {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--nutri-bg-secondary);
}

.nutri-flow-text {
  font-size: 0.95rem;
  color: var(--nutri-text-muted);
}

/* CTA Row / Strip (Preset C: Space-Between Flex Box) */
.nutri-action-strip {
  background-color: var(--nutri-bg-secondary);
  color: #ffffff;
  padding: 5rem 2rem;
}

.nutri-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nutri-strip-inner h2 {
  font-size: 2.2rem;
  max-width: 700px;
}

/* Form Booking Screen (Preset C: 60/40 Split) */
.nutri-booking-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6dvh 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.nutri-booking-form-panel {
  background-color: var(--nutri-bg-surface);
  padding: 3rem;
  border-radius: var(--nutri-radius);
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.nutri-booking-form-panel h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--nutri-bg-secondary);
}

.nutri-form-group {
  margin-bottom: 1.5rem;
}

.nutri-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--nutri-bg-secondary);
}

.nutri-form-group input,
.nutri-form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eaeaea;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--nutri-transition);
}

.nutri-form-group input:focus,
.nutri-form-group textarea:focus {
  outline: none;
  border-color: var(--nutri-accent-color);
  box-shadow: 0 0 10px var(--nutri-border-glow);
}

.nutri-policy-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--nutri-text-muted);
}

.nutri-policy-acceptance input {
  margin-top: 0.2rem;
}

.nutri-form-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  background: var(--nutri-gradient-spark);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 82, 59, 0.3);
  transition: var(--nutri-transition);
}

.nutri-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 82, 59, 0.4);
}

.nutri-info-cards-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nutri-sidebar-card {
  background-color: var(--nutri-bg-surface);
  padding: 2rem;
  border-radius: var(--nutri-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.nutri-sidebar-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--nutri-bg-secondary);
}

.nutri-sidebar-card-title svg {
  fill: var(--nutri-accent-color);
  width: 24px;
  height: 24px;
}

.nutri-bullet-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.nutri-bullet-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.nutri-bullet-dot {
  background-color: var(--nutri-accent-color);
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* FAQ Accordion Grid */
.nutri-faq-segment {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6dvh 2rem;
}

.nutri-accordion-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.nutri-accordion-item {
  background-color: var(--nutri-bg-surface);
  border-radius: var(--nutri-radius);
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.nutri-accordion-title {
  font-size: 1.2rem;
  color: var(--nutri-bg-secondary);
  margin-bottom: 0.75rem;
  font-weight: bold;
}

.nutri-accordion-desc {
  color: var(--nutri-text-muted);
}

/* Stats Counter Row */
.nutri-stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.nutri-stat-item-box {
  background-color: var(--nutri-bg-surface);
  padding: 2.5rem;
  border-radius: var(--nutri-radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.nutri-stat-giant-num {
  font-family: var(--nutri-font-display);
  font-size: 3.5rem;
  color: var(--nutri-accent-color);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.nutri-stat-label-text {
  font-size: 1rem;
  font-weight: bold;
  color: var(--nutri-bg-secondary);
}

/* Footer Section */
.nutri-site-footer {
  background-color: var(--nutri-bg-secondary);
  color: rgba(255,255,255,0.7);
  padding: 5rem 2rem 2rem 2rem;
  font-size: 0.95rem;
  border-top: 5px solid var(--nutri-accent-color);
}

.nutri-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.nutri-footer-brand-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nutri-footer-brand-logo {
  font-family: var(--nutri-font-display);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nutri-footer-brand-logo svg {
  fill: var(--nutri-accent-color);
  width: 36px;
  height: 36px;
}

.nutri-footer-links-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}

.nutri-footer-nav {
  display: flex;
  gap: 2rem;
}

.nutri-footer-nav a:hover {
  color: #ffffff;
}

.nutri-disclaimer-box {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.nutri-footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Cookie Banner styling */
.nutri-cookie-guard {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--nutri-bg-secondary);
  color: #ffffff;
  padding: 1.5rem 2rem;
  z-index: 99999;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  display: none;
  border-top: 3px solid var(--nutri-accent-color);
}

.nutri-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nutri-cookie-btn-wrap {
  display: flex;
  gap: 1rem;
}

.nutri-cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--nutri-transition);
}

.nutri-cookie-btn-accept {
  background: var(--nutri-gradient-spark);
  color: #ffffff;
}

.nutri-cookie-btn-decline {
  background-color: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}

.nutri-cookie-btn-decline:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* Scroll Animation classes */
.nutri-reveal {
  animation: scroll-slide-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) both;
  animation-timeline: view();
  animation-range: entry 10% entry 30%;
}

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

/* Typography styles for Legal templates */
.nutri-legal-hero {
  background-color: var(--nutri-bg-secondary);
  color: #ffffff;
  padding: 6rem 2rem;
  text-align: center;
}

.nutri-legal-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.nutri-legal-page-body {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.nutri-legal-page-body h2 {
  font-size: 1.8rem;
  color: var(--nutri-bg-secondary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.nutri-legal-page-body p {
  margin-bottom: 1.5rem;
  color: var(--nutri-text-muted);
}

/* Thank you page styling */
.nutri-thankyou-wrapper {
  max-width: 1200px;
  margin: 5dvh auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.nutri-thankyou-media img {
  box-shadow: 0 15px 40px rgba(255, 82, 59, 0.15);
}

/* Responsive Adaptive CSS */
@media (max-width: 1024px) {
  .nutri-hero-grid,
  .nutri-diagonal-inner,
  .nutri-booking-layout,
  .nutri-thankyou-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .nutri-diagonal-media {
    order: -1;
  }
  
  .nutri-flow-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .nutri-flow-container::before {
    display: none;
  }
  
  .nutri-stats-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nutri-burger-trigger {
    display: flex;
  }
  
  .nutri-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--nutri-accent-color);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .nutri-burger-checkbox:checked ~ .nutri-nav-links {
    display: flex;
  }
  
  .nutri-features-block-grid {
    grid-template-columns: 1fr;
  }
  
  .nutri-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .nutri-stats-panel {
    grid-template-columns: 1fr;
  }
  
  .nutri-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .nutri-footer-links-side {
    align-items: flex-start;
  }
  
  .nutri-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .nutri-hero-headline {
    font-size: 2.5rem;
  }
}