/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Poppins:wght@300;400;600&display=swap');

:root {
  --vital-bg: #FAF6F0;
  --vital-surface: #F3ECE0;
  --vital-accent: #E05A47;
  --vital-deep-teal: #0B4F54;
  --vital-ink: #1F2421;
  --vital-white: #FFFFFF;
  --vital-accent-hover: #C24634;
  --vital-gradient: linear-gradient(135deg, #0B4F54 0%, #E05A47 100%);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --vital-radius: 16px;
  --vital-shadow: 0 8px 30px rgba(31, 36, 33, 0.08);
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--vital-deep-teal);
}

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

/* Scroll Watcher & Reveal Animations */
@keyframes progress-grow {
  to { width: 100%; }
}
.mov-scroll-watcher {
  height: 4px;
  width: 0;
  background: var(--vital-accent);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

@keyframes slide-reveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mov-reveal-item {
  animation: slide-reveal both;
  animation-timeline: view();
  animation-range: entry 10% entry 40%;
}

/* Header (Preset C style - Bright Accent Background, White text) */
.mov-header-wrap {
  background-color: var(--vital-deep-teal);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--vital-shadow);
}

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

.mov-branding-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--vital-white);
  text-transform: uppercase;
}

.mov-branding-logo svg {
  fill: var(--vital-accent);
  width: 32px;
  height: 32px;
}

.mov-navigation {
  display: flex;
  align-items: center;
}

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

.mov-nav-anchor {
  color: var(--vital-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
}

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

.mov-nav-anchor:hover::after {
  width: 100%;
}

/* Mobile Hamburger Menu (CSS only) */
.mov-menu-toggle-input {
  display: none;
}

.mov-nav-hamburger-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mov-nav-hamburger-label span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--vital-white);
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero Section (Preset C - Gradient, Decorative absolute text, CSS shapes) */
.mov-hero-area {
  position: relative;
  min-height: 90vh;
  background: var(--vital-gradient);
  display: flex;
  align-items: center;
  padding: 6dvh 2rem;
  overflow: hidden;
}

.mov-huge-watermark-num {
  position: absolute;
  right: -5%;
  bottom: -5%;
  font-family: var(--font-display);
  font-size: 24rem;
  font-weight: 900;
  color: var(--vital-white);
  opacity: 0.05;
  user-select: none;
  line-height: 1;
}

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

.mov-hero-left {
  color: var(--vital-white);
}

.mov-hero-left h1 {
  color: var(--vital-white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.mov-hero-left p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
}

.mov-pill-button {
  display: inline-block;
  background-color: var(--vital-accent);
  color: var(--vital-white);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(224, 90, 71, 0.4);
  letter-spacing: 1px;
}

.mov-pill-button:hover {
  background-color: var(--vital-accent-hover);
  transform: translateY(-2px);
}

.mov-hero-right-shapes {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mov-shape-circle {
  width: 260px;
  height: 260px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  animation: rotate-shape 20s linear infinite;
}

.mov-shape-box-solid {
  width: 180px;
  height: 180px;
  background: var(--vital-accent);
  border-radius: var(--vital-radius);
  transform: rotate(45deg);
  box-shadow: var(--vital-shadow);
  opacity: 0.8;
}

@keyframes rotate-shape {
  100% { transform: rotate(360deg); }
}

/* Content Panel (Preset C - bg2.webp with diagonal clip-path, text overlay) */
.mov-slanted-content-panel {
  margin: 10dvh 0;
  position: relative;
}

.mov-slanted-bg-wrap {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  background-image: linear-gradient(rgba(11, 79, 84, 0.85), rgba(11, 79, 84, 0.85)), url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.mov-slanted-text-overlay {
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 3.5rem;
  border-radius: var(--vital-radius);
  box-shadow: var(--vital-shadow);
  text-align: center;
}

.mov-slanted-text-overlay h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.mov-slanted-text-overlay p {
  color: var(--vital-ink);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Features Matrix (Preset C - No borders, Large color numbers) */
.mov-features-matrix-section {
  max-width: 1200px;
  margin: 10dvh auto;
  padding: 0 2rem;
}

.mov-section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}

.mov-section-title-wrapper h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.mov-section-title-wrapper h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--vital-accent);
}

.mov-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.mov-feature-matrix-tile {
  background-color: var(--vital-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--vital-radius);
  transition: transform 0.3s ease;
}

.mov-feature-matrix-tile:hover {
  transform: translateY(-5px);
}

.mov-feature-tile-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--vital-accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.mov-feature-matrix-tile h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Timeline Stepper (Preset C - Solid Line Connector, alternating circles) */
.mov-timeline-scaffold {
  background-color: var(--vital-surface);
  padding: 10dvh 2rem;
}

.mov-stepper-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mov-stepper-track-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
}

.mov-stepper-track-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 4px;
  background-color: var(--vital-deep-teal);
  z-index: 1;
}

.mov-stepper-node-item {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

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

/* Alternating nodes */
.mov-stepper-node-item:nth-child(odd) .mov-node-circle-marker {
  background-color: var(--vital-deep-teal);
  color: var(--vital-white);
  border: 4px solid var(--vital-deep-teal);
}

.mov-stepper-node-item:nth-child(even) .mov-node-circle-marker {
  background-color: var(--vital-surface);
  color: var(--vital-deep-teal);
  border: 4px solid var(--vital-deep-teal);
}

.mov-stepper-node-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.mov-stepper-node-item p {
  font-size: 0.95rem;
  color: var(--vital-ink);
  opacity: 0.9;
}

/* CTA strip (Preset C - Dark background, justify-content: space-between) */
.mov-banner-cta-bar {
  background-color: var(--vital-ink);
  color: var(--vital-white);
  padding: 6rem 2rem;
}

.mov-banner-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.mov-banner-cta-container h2 {
  color: var(--vital-white);
  font-size: clamp(2rem, 4vw, 3rem);
  flex: 1;
  min-width: 300px;
}

/* Expert bio specific styling */
.mov-expert-col-grid {
  max-width: 1200px;
  margin: 8dvh auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.mov-expert-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: var(--vital-radius);
  box-shadow: var(--vital-shadow);
  object-fit: cover;
}

.mov-expert-bio-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.mov-expert-bio-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.mov-stats-stripe-row {
  background-color: var(--vital-deep-teal);
  color: var(--vital-white);
  padding: 4rem 2rem;
}

.mov-stats-stripe-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.mov-stat-stripe-metric {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--vital-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mov-stat-stripe-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reservation Layout (Preset C - Left Form 60%, Right Info cards 40%) */
.mov-reservation-dual-panel {
  max-width: 1200px;
  margin: 8dvh auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.mov-reservation-form-container {
  background-color: var(--vital-surface);
  padding: 3rem;
  border-radius: var(--vital-radius);
  box-shadow: var(--vital-shadow);
}

.mov-reservation-form-container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.mov-form-input-element-group {
  margin-bottom: 1.5rem;
}

.mov-form-input-element-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.mov-form-input-field {
  width: 100%;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: var(--vital-radius);
  background-color: var(--vital-white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.mov-form-input-field:focus {
  border-color: var(--vital-deep-teal);
}

.mov-form-checkbox-control-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.mov-form-checkbox-control-wrapper input {
  margin-top: 0.25rem;
}

.mov-form-checkbox-control-wrapper label {
  font-size: 0.85rem;
  cursor: pointer;
}

.mov-form-submit-trigger {
  width: 100%;
  border: none;
  cursor: pointer;
}

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

.mov-sidebar-highlight-card {
  background-color: var(--vital-white);
  padding: 2rem;
  border-radius: var(--vital-radius);
  box-shadow: var(--vital-shadow);
  border-left: 6px solid var(--vital-accent);
}

.mov-sidebar-highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mov-sidebar-highlight-card h3 svg {
  width: 24px;
  height: 24px;
  fill: var(--vital-accent);
}

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

.mov-sidebar-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.mov-sidebar-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--vital-accent);
}

/* FAQ Accordion (CSS only, open style) */
.mov-faq-accordion-block {
  max-width: 1200px;
  margin: 10dvh auto;
  padding: 0 2rem;
}

.mov-faq-element-row {
  margin-bottom: 1.5rem;
  background-color: var(--vital-white);
  border-radius: var(--vital-radius);
  box-shadow: var(--vital-shadow);
  padding: 2rem;
}

.mov-faq-element-row h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--vital-deep-teal);
}

.mov-faq-element-row p {
  color: var(--vital-ink);
  opacity: 0.9;
}

/* Legal & Information templates */
.mov-legal-doc-scaffold {
  max-width: 1000px;
  margin: 8dvh auto;
  padding: 0 2rem;
  min-height: 70vh;
}

.mov-legal-doc-scaffold h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.mov-legal-doc-scaffold h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.mov-legal-doc-scaffold p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

/* Cookie Banner styling */
.mov-cookie-banner-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vital-deep-teal);
  color: var(--vital-white);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
}

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

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

.mov-cookie-banner-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

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

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

#decline-cookie {
  background-color: transparent;
  color: var(--vital-white);
  border: 2px solid var(--vital-white);
}

#decline-cookie:hover {
  background-color: var(--vital-white);
  color: var(--vital-deep-teal);
}

/* Bottom Footer */
.mov-footer-main {
  background-color: var(--vital-ink);
  color: var(--vital-white);
  padding: 5rem 2rem 2rem 2rem;
}

.mov-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mov-footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.mov-footer-top-row .mov-branding-logo {
  color: var(--vital-white);
}

.mov-footer-legal-anchors {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.mov-footer-legal-anchors a {
  color: var(--vital-white);
  opacity: 0.7;
  font-size: 0.9rem;
}

.mov-footer-legal-anchors a:hover {
  opacity: 1;
  color: var(--vital-accent);
}

.mov-footer-disclaimer-content {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.mov-footer-copyright-text {
  font-size: 0.85rem;
  opacity: 0.6;
  text-align: center;
}

/* Media Queries */
@media (max-width: 991px) {
  .mov-nav-hamburger-label {
    display: flex;
  }

  .mov-nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vital-deep-teal);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--vital-shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.3s ease;
  }

  .mov-menu-toggle-input:checked ~ .mov-navigation .mov-nav-list {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mov-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .mov-hero-right-shapes {
    height: 300px;
  }

  .mov-stepper-track-row {
    flex-direction: column;
    gap: 3rem;
  }

  .mov-stepper-track-row::before {
    display: none;
  }

  .mov-expert-col-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mov-reservation-dual-panel {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}