/* --- DESIGN SYSTEM: PRESET C (BOLD ACCENT) --- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,700;0,900;1,700&family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --vital-accent-main: #14857A;      /* Vivid Teal */
  --vital-accent-contrast: #FFFFFF;  /* Pure White */
  --vital-highend-alert: #B23B1E;    /* Bold Terracotta */
  --vital-dark-surface: #10151B;     /* Deep Slate Dark */
  --vital-light-bg: #FFFDF9;         /* Warm Soft Cream */
  --vital-soft-gray: #EAE5DD;        /* Neutral Contrast */
  --vital-glass-solid: rgba(20, 133, 122, 0.15);
  
  --vital-font-heading: 'Raleway', sans-serif;
  --vital-font-body: 'Poppins', sans-serif;
  
  --vital-border-radius: 16px;       /* Soft style */
  --vital-shadow-raised: 0 10px 30px rgba(16, 21, 27, 0.08);
  --vital-shadow-deep: 0 20px 45px rgba(16, 21, 27, 0.15);
  
  --vital-pad: 10dvh;                /* Normal spacing */
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--vital-font-body);
  background-color: var(--vital-light-bg);
  color: var(--vital-dark-surface);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--vital-font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--vital-dark-surface);
}

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

img {
  max-width: 100%;
  display: block;
}

/* Scroll Progress Bar */
.vital-scroll-tracker {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background-color: var(--vital-highend-alert);
  width: 0;
  z-index: 99999;
  animation: vital-progress-growth linear;
  animation-timeline: scroll();
}

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

/* --- HEADER (Preset C: Bright Accent Background) --- */
.vital-header-membrane {
  background-color: var(--vital-accent-main);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--vital-shadow-raised);
}

.vital-header-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
}

.vital-header-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--vital-accent-contrast);
}

.vital-header-identity svg {
  fill: var(--vital-accent-contrast);
  width: 32px;
  height: 32px;
}

.vital-header-identity span {
  font-family: var(--vital-font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vital-nav-harness {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vital-nav-link {
  color: var(--vital-accent-contrast);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}

.vital-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vital-highend-alert);
  transition: width 0.3s ease;
}

.vital-nav-link:hover::after {
  width: 100%;
}

/* Mobile Hamburger (CSS-Only) */
.vital-burger-toggle {
  display: none;
}

.vital-burger-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1010;
}

.vital-burger-trigger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--vital-accent-contrast);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- FOOTER --- */
.vital-footer-membrane {
  background-color: var(--vital-dark-surface);
  color: var(--vital-soft-gray);
  padding: 5rem 2rem 2rem;
  border-top: 5px solid var(--vital-accent-main);
}

.vital-footer-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.vital-footer-core {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.vital-footer-about h3, .vital-footer-links h3 {
  color: var(--vital-accent-contrast);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.vital-footer-anchors {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vital-footer-anchors a {
  color: var(--vital-soft-gray);
}

.vital-footer-anchors a:hover {
  color: var(--vital-accent-main);
  padding-left: 5px;
}

.vital-footer-disclaimer-card {
  border-top: 1px solid rgba(234, 229, 221, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(234, 229, 221, 0.6);
}

.vital-footer-disclaimer-card p {
  margin-bottom: 1rem;
}

/* --- HERO SECTION (Preset C: Fullscreen gradient, massive number, abstract forms) --- */
.vital-billboard-curtain {
  min-height: calc(100vh - 70px);
  background: linear-gradient(135deg, var(--vital-accent-main) 0%, #0c564f 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: var(--vital-pad) 2rem;
}

.vital-billboard-giant-num {
  position: absolute;
  right: -5%;
  bottom: -5%;
  font-size: clamp(15rem, 30vw, 35rem);
  font-family: var(--vital-font-heading);
  font-weight: 900;
  color: var(--vital-accent-contrast);
  opacity: 0.05;
  user-select: none;
  pointer-events: none;
}

.vital-billboard-shape-one {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--vital-highend-alert) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.vital-billboard-shape-two {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 400px;
  height: 100px;
  background: var(--vital-accent-contrast);
  opacity: 0.03;
  transform: rotate(-15deg);
  pointer-events: none;
}

.vital-billboard-harness {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.vital-billboard-harness h1 {
  color: var(--vital-accent-contrast);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.vital-billboard-harness p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 650px;
  margin-bottom: 1rem;
}

.vital-pill-trigger {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--vital-highend-alert);
  color: var(--vital-accent-contrast);
  font-family: var(--vital-font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 1.2rem 2.5rem;
  border-radius: 50px; /* Pill */
  box-shadow: 0 8px 24px rgba(178, 59, 30, 0.4);
  letter-spacing: 1px;
}

.vital-pill-trigger:hover {
  background-color: var(--vital-accent-contrast);
  color: var(--vital-dark-surface);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* --- DIAGONAL PANEL (Preset C: Content with clip-path) --- */
.vital-diagonal-panel {
  position: relative;
  background-color: var(--vital-soft-gray);
  padding: var(--vital-pad) 0;
  z-index: 10;
}

.vital-diagonal-clipper {
  clip-path: polygon(0 6dvh, 100% 0, 100% calc(100% - 6dvh), 0 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.vital-diagonal-overlay {
  background-color: rgba(16, 21, 27, 0.82);
  padding: 12dvh 2rem;
}

.vital-diagonal-shell {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(20, 133, 122, 0.95);
  padding: 3.5rem;
  border-radius: var(--vital-border-radius);
  color: var(--vital-accent-contrast);
  box-shadow: var(--vital-shadow-deep);
}

.vital-diagonal-shell h2 {
  color: var(--vital-accent-contrast);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  border-left: 6px solid var(--vital-highend-alert);
  padding-left: 1rem;
}

.vital-diagonal-shell p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* --- ADVANTAGE GRID (Preset C: Columns with large numbers) --- */
.vital-advantage-membrane {
  padding: var(--vital-pad) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vital-advantage-headline {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.vital-advantage-headline::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--vital-accent-main);
  margin: 1rem auto 0;
}

.vital-advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.vital-advantage-unit {
  background: var(--vital-light-bg);
  border: 1px solid var(--vital-soft-gray);
  padding: 3rem 2rem;
  border-radius: var(--vital-border-radius);
  box-shadow: var(--vital-shadow-raised);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.vital-advantage-unit:hover {
  transform: translateY(-5px);
  box-shadow: var(--vital-shadow-deep);
}

.vital-advantage-num {
  font-family: var(--vital-font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--vital-accent-main);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.vital-advantage-unit h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--vital-dark-surface);
}

/* --- STEPS / TIMELINE (Preset C: Horizontal steps with solid line connector) --- */
.vital-steps-membrane {
  background-color: var(--vital-soft-gray);
  padding: var(--vital-pad) 2rem;
}

.vital-steps-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.vital-steps-headline {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 5rem;
}

.vital-steps-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 2rem;
}

.vital-steps-connector {
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 4px;
  background-color: var(--vital-accent-main);
  z-index: 1;
}

.vital-step-node {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
}

.vital-step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vital-font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.vital-step-node:nth-child(even) .vital-step-circle {
  background-color: var(--vital-accent-main);
  color: var(--vital-accent-contrast);
  border: 4px solid var(--vital-accent-contrast);
}

.vital-step-node:nth-child(odd) .vital-step-circle {
  background-color: var(--vital-accent-contrast);
  color: var(--vital-accent-main);
  border: 4px solid var(--vital-accent-main);
}

.vital-step-node h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.vital-step-node p {
  font-size: 0.95rem;
  color: var(--vital-dark-surface);
  max-width: 280px;
  margin: 0 auto;
}

/* --- CTA STRIP (Preset C: Dark bg, Headline left, Pill button right, justify-between) --- */
.vital-strip-membrane {
  background-color: var(--vital-dark-surface);
  color: var(--vital-accent-contrast);
  padding: 6rem 2rem;
}

.vital-strip-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.vital-strip-headline {
  flex: 1;
  min-width: 300px;
}

.vital-strip-headline h2 {
  color: var(--vital-accent-contrast);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.vital-strip-headline p {
  color: var(--vital-soft-gray);
  font-size: 1.1rem;
}

.vital-strip-action {
  flex-shrink: 0;
}

/* --- EXPERT PAGE LAYOUT (Preset C) --- */
/* (Expert has: Hero -> CTA immediately -> content (bg2.webp right 45% + text left 55%) -> 4 stats row -> final section bg3.webp) */
.vital-expert-split {
  padding: var(--vital-pad) 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.vital-expert-text {
  flex: 1.2;
}

.vital-expert-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.vital-expert-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.vital-expert-media {
  flex: 0.8;
  height: 500px;
  object-fit: cover;
  border-radius: var(--vital-border-radius);
  box-shadow: var(--vital-shadow-deep);
}

.vital-stats-membrane {
  background-color: var(--vital-accent-main);
  padding: 5rem 2rem;
  color: var(--vital-accent-contrast);
}

.vital-stats-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  text-align: center;
}

.vital-stat-box .vital-stat-num {
  font-family: var(--vital-font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--vital-highend-alert);
  display: block;
  margin-bottom: 0.5rem;
}

.vital-stat-box p {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* --- BOOKING / RESERVE LAYOUT (Preset C) --- */
/* (Form left 60%, info cards right 40% -> FAQ bottom) */
.vital-booking-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--vital-pad) 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.vital-booking-form-box {
  background-color: var(--vital-light-bg);
  border: 1px solid var(--vital-soft-gray);
  padding: 3.5rem;
  border-radius: var(--vital-border-radius);
  box-shadow: var(--vital-shadow-deep);
}

.vital-booking-form-box h2 {
  font-size: 2.2res;
  margin-bottom: 2rem;
}

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

.vital-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.vital-form-group input, .vital-form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--vital-soft-gray);
  border-radius: 8px;
  font-family: var(--vital-font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.vital-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.vital-checkbox-group input {
  margin-top: 0.3rem;
}

.vital-form-submit {
  width: 100%;
  background-color: var(--vital-highend-alert);
  color: var(--vital-accent-contrast);
  font-family: var(--vital-font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 1.2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.vital-form-submit:hover {
  background-color: var(--vital-accent-main);
}

.vital-booking-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vital-info-card {
  background: var(--vital-light-bg);
  border-top: 4px solid var(--vital-accent-main);
  padding: 2rem;
  border-radius: var(--vital-border-radius);
  box-shadow: var(--vital-shadow-raised);
}

.vital-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.vital-info-card ul {
  list-style: none;
}

.vital-info-card li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.vital-info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background-color: var(--vital-highend-alert);
  border-radius: 50%;
}

/* FAQ Bottom Area */
.vital-faq-membrane {
  background-color: var(--vital-soft-gray);
  padding: var(--vital-pad) 2rem;
}

.vital-faq-shell {
  max-width: 900px;
  margin: 0 auto;
}

.vital-faq-headline {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.vital-faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vital-faq-unit {
  background-color: var(--vital-light-bg);
  padding: 2rem;
  border-radius: var(--vital-border-radius);
  box-shadow: var(--vital-shadow-raised);
}

.vital-faq-unit h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--vital-accent-main);
}

/* --- SCROLL REVEAL (CSS ONLY) --- */
.vital-reveal-trigger {
  animation: vital-fade-slide-up 0.6s linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

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

/* --- COOKIES BANNER --- */
.vital-cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--vital-dark-surface);
  color: var(--vital-accent-contrast);
  padding: 1.5rem 2rem;
  z-index: 99999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.25);
  display: none;
}

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

.vital-cookies-actions {
  display: flex;
  gap: 1rem;
}

.vital-cookies-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  font-family: var(--vital-font-heading);
}

#accept-cookie {
  background-color: var(--vital-accent-main);
  color: var(--vital-accent-contrast);
}

#decline-cookie {
  background-color: transparent;
  color: var(--vital-soft-gray);
  border: 1px solid var(--vital-soft-gray);
}

/* --- MISC UTILITIES --- */
.vital-static-legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--vital-pad) 2rem;
}

.vital-static-legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.vital-static-legal-page h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.vital-static-legal-page p {
  margin-bottom: 1.25rem;
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 968px) {
  .vital-burger-trigger {
    display: flex;
  }
  
  .vital-nav-harness {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--vital-accent-main);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: var(--vital-shadow-deep);
  }
  
  .vital-burger-toggle:checked ~ .vital-nav-harness {
    transform: translateY(0);
    opacity: 1;
  }
  
  .vital-burger-toggle:checked ~ .vital-burger-trigger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .vital-burger-toggle:checked ~ .vital-burger-trigger span:nth-child(2) {
    opacity: 0;
  }

  .vital-burger-toggle:checked ~ .vital-burger-trigger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  
  .vital-steps-timeline {
    flex-direction: column;
    gap: 3rem;
  }
  
  .vital-steps-connector {
    top: 5%;
    bottom: 5%;
    left: 35px;
    width: 4px;
    height: 90%;
  }
  
  .vital-step-node {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 1.5rem;
  }
  
  .vital-step-circle {
    margin: 0;
    flex-shrink: 0;
  }
  
  .vital-booking-grid {
    grid-template-columns: 1fr;
  }
  
  .vital-expert-split {
    flex-direction: column;
  }
  
  .vital-expert-media {
    width: 100%;
    height: 350px;
  }
}