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

:root {
  --vital-dark-depth: #080c14;
  --vital-surface-panel: rgba(22, 31, 48, 0.75);
  --vital-glass-border: rgba(11, 230, 185, 0.18);
  --vital-glow-tone: #0be6b9;
  --vital-glow-hover: #00f2fe;
  --vital-text-pure: #ffffff;
  --vital-text-dimmed: #a0aec0;
  --vital-spacious-padding: 16dvh;
  --vital-soft-radius: 16px;
  --font-display: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

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

body {
  background-color: var(--vital-dark-depth);
  color: var(--vital-text-pure);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .vital-force-caps {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
}

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

/* Animations using view timeline where supported */
.reveal {
  animation: slide-up 0.6s linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 35%;
}

/* Header & Progress */
.vital-scroll-progress {
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--vital-glow-tone), var(--vital-glow-hover));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

.vital-nav-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vital-glass-border);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vital-logo-anchor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--vital-glow-tone);
  text-shadow: 0 0 10px rgba(11, 230, 185, 0.3);
}

.vital-logo-anchor svg {
  width: 28px;
  height: 28px;
  fill: var(--vital-glow-tone);
}

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

.vital-nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.85;
}

.vital-nav-links a:hover,
.vital-nav-links a.active {
  color: var(--vital-glow-tone);
  opacity: 1;
}

/* CSS Only Hamburger */
.vital-nav-checkbox {
  display: none;
}

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

.vital-nav-trigger span {
  width: 25px;
  height: 3px;
  background-color: var(--vital-text-pure);
  transition: 0.3s;
}

/* Hero Section Styles */
.vital-hero-immersive {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10dvh 5%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vital-hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(8,12,20,0.4) 0%, rgba(8,12,20,0.9) 100%);
  z-index: 1;
}

.vital-glass-capsule {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  background: var(--vital-surface-panel);
  border: 1px solid var(--vital-glass-border);
  backdrop-filter: blur(16px);
  padding: 3.5rem;
  border-radius: var(--vital-soft-radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(11, 230, 185, 0.1);
  text-align: center;
}

.vital-glass-capsule h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--vital-text-pure);
}

.vital-glass-capsule p {
  color: var(--vital-text-dimmed);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.vital-btn-emerald {
  display: inline-block;
  background: linear-gradient(135deg, var(--vital-glow-tone), #00d2ff);
  color: var(--vital-dark-depth);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(11, 230, 185, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.vital-btn-emerald:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(11, 230, 185, 0.6), 0 0 15px rgba(0, 242, 254, 0.3);
}

/* Split Showcase Section */
.vital-split-showcase {
  display: flex;
  min-height: 80vh;
  background: var(--vital-dark-depth);
  border-bottom: 1px solid var(--vital-glass-border);
}

.vital-side-media {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.vital-rich-text-column {
  flex: 1;
  padding: var(--vital-spacious-padding) 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, #0d1624, #080c14);
}

.vital-rich-text-column h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.vital-rich-text-column h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--vital-glow-tone);
  margin-top: 0.75rem;
}

.vital-rich-text-column p {
  color: var(--vital-text-dimmed);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.vital-accent-dot-list {
  list-style: none;
}

.vital-accent-dot-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--vital-text-pure);
}

.vital-accent-dot-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--vital-glow-tone);
  box-shadow: 0 0 8px var(--vital-glow-tone);
}

/* Bento Features Grid */
.vital-glass-grid-section {
  padding: var(--vital-spacious-padding) 5%;
  background: radial-gradient(circle at top right, #111e30, var(--vital-dark-depth));
}

.vital-section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.vital-section-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vital-section-intro p {
  color: var(--vital-text-dimmed);
}

.vital-glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vital-bento-feature-item {
  background: var(--vital-surface-panel);
  border: 1px solid var(--vital-glass-border);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--vital-soft-radius);
  border-top: 4px solid var(--vital-glow-tone);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.vital-bento-feature-item:hover {
  transform: translateY(-8px);
  border-top-color: var(--vital-glow-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(11, 230, 185, 0.2);
}

.vital-feature-icon-wrapper {
  margin-bottom: 1.5rem;
}

.vital-feature-icon-wrapper svg {
  width: 44px;
  height: 44px;
  fill: var(--vital-glow-tone);
  filter: drop-shadow(0 0 5px rgba(11, 230, 185, 0.5));
}

.vital-bento-feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.vital-bento-feature-item p {
  color: var(--vital-text-dimmed);
  font-size: 0.95rem;
}

/* Timeline Sections */
.vital-timeline-track {
  padding: var(--vital-spacious-padding) 5%;
  background: var(--vital-dark-depth);
}

.vital-vertical-axis {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2.5rem;
  border-left: 3px solid var(--vital-glow-tone);
}

.vital-timeline-milestone {
  position: relative;
  margin-bottom: 3.5rem;
}

.vital-timeline-milestone:last-child {
  margin-bottom: 0;
}

.vital-milestone-marker {
  position: absolute;
  left: calc(-2.5rem - 10px);
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--vital-dark-depth);
  border: 4px solid var(--vital-glow-tone);
  box-shadow: 0 0 12px var(--vital-glow-tone);
}

.vital-milestone-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--vital-glow-tone);
}

.vital-milestone-body p {
  color: var(--vital-text-dimmed);
}

/* CTA strip style */
.vital-strip-callout {
  padding: 8dvh 5%;
  background: linear-gradient(135deg, #09101d, #14233c);
  border-top: 1px solid var(--vital-glass-border);
  border-bottom: 1px solid var(--vital-glass-border);
}

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

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

.vital-btn-ghost {
  display: inline-block;
  border: 2px solid var(--vital-glow-tone);
  color: var(--vital-glow-tone);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  background: transparent;
  transition: all 0.3s;
}

.vital-btn-ghost:hover {
  background: var(--vital-glow-tone);
  color: var(--vital-dark-depth);
  box-shadow: 0 0 15px rgba(11, 230, 185, 0.4);
}

/* FAQ accordion section */
.vital-faq-accordion {
  max-width: 800px;
  margin: 4rem auto 0 auto;
}

.vital-faq-unit {
  background: var(--vital-surface-panel);
  border: 1px solid var(--vital-glass-border);
  border-radius: var(--vital-soft-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.vital-faq-title {
  padding: 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(11, 230, 185, 0.08);
  color: var(--vital-glow-tone);
}

.vital-faq-content {
  padding: 1.5rem;
  color: var(--vital-text-dimmed);
}

/* Stats Row */
.vital-stats-strip {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  padding: 2.5rem;
  background: var(--vital-surface-panel);
  border: 1px solid var(--vital-glass-border);
  border-radius: var(--vital-soft-radius);
}

.vital-stat-individual {
  text-align: center;
}

.vital-stat-figure {
  font-size: 3rem;
  font-weight: 900;
  color: var(--vital-glow-tone);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(11, 230, 185, 0.3);
}

.vital-stat-label {
  font-size: 0.9rem;
  color: var(--vital-text-dimmed);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Forms (Reserve) */
.vital-appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vital-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vital-form-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vital-text-dimmed);
}

.vital-form-group input,
.vital-form-group textarea {
  background: rgba(8, 12, 20, 0.6);
  border: 1px solid var(--vital-glass-border);
  color: var(--vital-text-pure);
  padding: 1rem;
  border-radius: 8px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s;
}

.vital-form-group input:focus,
.vital-form-group textarea:focus {
  border-color: var(--vital-glow-tone);
}

.vital-checkbox-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.vital-checkbox-agree input {
  margin-top: 0.25rem;
  accent-color: var(--vital-glow-tone);
}

.vital-checkbox-agree span {
  font-size: 0.85rem;
  color: var(--vital-text-dimmed);
}

.vital-checkbox-agree a {
  color: var(--vital-glow-tone);
  text-decoration: underline;
}

/* Info Cards grid for Reserve.html */
.vital-reserve-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.vital-instructional-card {
  background: var(--vital-surface-panel);
  border: 1px solid var(--vital-glass-border);
  padding: 2rem;
  border-radius: var(--vital-soft-radius);
}

.vital-instructional-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--vital-glow-tone);
}

.vital-instructional-card h3 svg {
  width: 24px;
  height: 24px;
  fill: var(--vital-glow-tone);
}

.vital-instructional-card p {
  color: var(--vital-text-dimmed);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.vital-ordered-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vital-ordered-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--vital-text-pure);
}

.vital-circular-numerical-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--vital-glow-tone);
  color: var(--vital-dark-depth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
}

/* Footer style */
.vital-site-footer {
  background: #04070d;
  border-top: 1px solid var(--vital-glass-border);
  padding: 5rem 5% 3rem 5%;
  font-size: 0.9rem;
}

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

.vital-footer-brand h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--vital-glow-tone);
}

.vital-footer-disclaimer {
  color: var(--vital-text-dimmed);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.vital-legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vital-legal-links a {
  color: var(--vital-text-dimmed);
}

.vital-legal-links a:hover {
  color: var(--vital-glow-tone);
}

.vital-copyright-line {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  text-align: center;
  color: var(--vital-text-dimmed);
  font-size: 0.8rem;
}

/* Cookie Consent Bar */
.vital-cookie-barrier {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(15px);
  border-top: 2px solid var(--vital-glow-tone);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}

.vital-cookie-barrier.hidden {
  transform: translateY(100%);
}

.vital-cookie-msg {
  font-size: 0.95rem;
  color: var(--vital-text-pure);
}

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

.vital-cookie-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.vital-cookie-accept {
  background: var(--vital-glow-tone);
  color: var(--vital-dark-depth);
}

.vital-cookie-accept:hover {
  background: var(--vital-glow-hover);
}

.vital-cookie-reject {
  background: rgba(255,255,255,0.1);
  color: var(--vital-text-pure);
}

.vital-cookie-reject:hover {
  background: rgba(255,255,255,0.2);
}

/* Legal text template styling */
.vital-legal-document-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--vital-spacious-padding) 5%;
}

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

.vital-legal-document-layout h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.vital-legal-document-layout p {
  color: var(--vital-text-dimmed);
  margin-bottom: 1.25rem;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .vital-glass-grid {
    grid-template-columns: 1fr;
  }
  .vital-split-showcase {
    flex-direction: column;
  }
  .vital-side-media {
    height: 300px;
  }
  .vital-reserve-split-layout {
    grid-template-columns: 1fr;
  }
  .vital-strip-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .vital-nav-trigger {
    display: flex;
  }
  
  .vital-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #080c14;
    border-bottom: 1px solid var(--vital-glass-border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .vital-nav-checkbox:checked ~ .vital-nav-links {
    display: flex;
  }

  .vital-nav-checkbox:checked ~ .vital-nav-trigger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .vital-nav-checkbox:checked ~ .vital-nav-trigger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }

  .vital-cookie-barrier {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}