/* GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Open+Sans:wght@400;600;700&display=swap');

/* CUSTOM THEME VARIABLES (Teal / Emerald Active Joint theme) */
:root {
  --mov-bg: #fafdfb;
  --mov-panel: #ffffff;
  --mov-shade: #111827;
  --mov-shade-soft: #4b5563;
  --mov-accent: #0d9488;
  --mov-accent-bright: #06b6d4;
  --mov-accent-deep: #0f766e;
  --mov-amber: #f59e0b;
  --mov-gradient: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --mov-radius: 16px;
  --mov-shadow: 0 10px 25px -5px rgba(13, 148, 136, 0.08), 0 8px 10px -6px rgba(13, 148, 136, 0.06);
  --mov-shadow-hover: 0 20px 30px -5px rgba(13, 148, 136, 0.16), 0 10px 15px -5px rgba(13, 148, 136, 0.12);
}

/* GENERAL STYLE RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

/* SCROLL PROGRESS INDICATOR */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--mov-gradient);
  z-index: 10000;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

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

/* STICKY HEADER */
.mov-header-area {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--mov-panel);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  z-index: 999;
}

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

.mov-logo-anchor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.mov-logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--mov-accent);
}

.mov-logo-text {
  font-family: var(--mov-font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--mov-shade);
  letter-spacing: -0.5px;
}

/* NAVIGATION MENU */
.mov-navigation-menu {
  display: flex;
  gap: 1.5rem;
}

.mov-nav-item {
  font-family: var(--mov-font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--mov-shade-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
  padding: 0.5rem 0;
}

.mov-nav-item:hover, .mov-nav-item.mov-active {
  color: var(--mov-accent);
}

/* RESPONSIVE HAMBURGER MENU */
.mov-toggle-trigger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.mov-burger-bar {
  height: 3px;
  width: 100%;
  background-color: var(--mov-shade);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .mov-toggle-trigger {
    display: flex;
  }
  .mov-navigation-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--mov-panel);
    padding: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
  }
  .mov-toggle-input:checked ~ .mov-navigation-menu {
    display: flex;
  }
}

/* HOME HERO */
.mov-home-hero-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 4rem 1.5rem;
}

.mov-hero-content {
  max-width: 650px;
  margin-left: max(5%, (100% - 1200px) / 2);
}

.mov-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mov-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.mov-hero-action {
  display: inline-block;
  font-family: var(--mov-font-display);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--mov-gradient);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(13, 148, 136, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}

.mov-hero-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(13, 148, 136, 0.5);
}

/* BENTO GRID SECTION */
.mov-bento-grid-sec {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 1.5rem;
}

.mov-section-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

.mov-section-title {
  font-size: 2rem;
  color: var(--mov-shade);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.mov-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 50px;
  height: 4px;
  background: var(--mov-gradient);
  border-radius: 2px;
}

.mov-section-lead {
  font-size: 1.1rem;
  color: var(--mov-shade-soft);
}

.mov-bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.mov-bento-tile {
  background-color: var(--mov-panel);
  border-radius: var(--mov-radius);
  padding: 2.25rem;
  box-shadow: var(--mov-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mov-bento-tile:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--mov-shadow-hover);
}

.mov-span-4 { grid-column: span 4; }
.mov-span-2 { grid-column: span 2; }
.mov-span-3 { grid-column: span 3; }
.mov-span-6 { grid-column: span 6; }

.mov-tile-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background-color: rgba(13, 148, 136, 0.1);
  color: var(--mov-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mov-tile-title {
  font-size: 1.2rem;
  color: var(--mov-shade);
  margin-bottom: 0.75rem;
}

.mov-tile-desc {
  font-size: 0.95rem;
  color: var(--mov-shade-soft);
}

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

.mov-bento-flex {
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 900px) {
  .mov-bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .mov-span-4, .mov-span-2, .mov-span-3, .mov-span-6 {
    grid-column: span 1;
  }
  .mov-bento-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* SCROLL REVEAL SCROLL DRIVEN ANIMATION */
@supports (animation-timeline: view()) {
  @keyframes slide-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    animation: slide-up 0.6s linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
}

/* HOW IT WORKS */
.mov-reveal-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 1.5rem;
}

.mov-steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.mov-step-card {
  background-color: var(--mov-panel);
  border-radius: var(--mov-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--mov-shadow);
  position: relative;
  overflow: hidden;
}

.mov-step-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-family: var(--mov-font-display);
  font-weight: 900;
  font-size: 5rem;
  color: rgba(13, 148, 136, 0.07);
  line-height: 1;
}

.mov-step-headline {
  font-size: 1.15rem;
  color: var(--mov-accent);
  margin-bottom: 1rem;
  z-index: 2;
  position: relative;
}

.mov-step-p {
  font-size: 0.95rem;
  color: var(--mov-shade-soft);
  z-index: 2;
  position: relative;
}

@media (max-width: 768px) {
  .mov-steps-container {
    grid-template-columns: 1fr;
  }
}

/* VISUAL STORY OVERLAY SECTION */
.mov-visual-story {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 10dvh 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mov-story-overlay {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 3.5rem 2rem;
  border-radius: var(--mov-radius);
}

.mov-story-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.mov-story-p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

.mov-story-action {
  display: inline-block;
  font-family: var(--mov-font-display);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background-color: var(--mov-panel);
  color: var(--mov-accent);
  padding: 1rem 2.25rem;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.25s, box-shadow 0.25s, background-color 0.25s;
}

.mov-story-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  background-color: var(--mov-bg);
}

/* CTA BANNER STRIP */
.mov-cta-banner {
  background-color: #111827;
  padding: 6dvh 1.5rem;
  text-align: center;
}

.mov-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.mov-cta-title {
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  color: #fff;
  margin-bottom: 2rem;
}

.mov-cta-btn {
  display: inline-block;
  font-family: var(--mov-font-display);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--mov-gradient);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--mov-radius);
  box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
  transition: opacity 0.25s, transform 0.25s;
}

.mov-cta-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* FOOTER AREA */
.mov-footer-area {
  background-color: #0d1514;
  color: rgba(255,255,255,0.7);
  padding: 5rem 1.5rem;
  font-size: 0.9rem;
}

.mov-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.mov-footer-disclaimer {
  max-width: 800px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.mov-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mov-footer-item {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.25s;
}

.mov-footer-item:hover {
  color: var(--mov-accent-bright);
}

.mov-footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* COOKIE BANNER STYLE */
.mov-cookie-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--mov-panel);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  padding: 1.5rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 9999;
}

.mov-cookie-text {
  font-size: 0.9rem;
  color: var(--mov-shade-soft);
  max-width: 800px;
}

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

.mov-cookie-btn {
  font-family: var(--mov-font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--mov-radius);
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.mov-btn-accept {
  background: var(--mov-gradient);
  color: #fff;
}

.mov-btn-decline {
  background-color: rgba(0,0,0,0.05);
  color: var(--mov-shade-soft);
}

.mov-cookie-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .mov-cookie-box {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* EXPERT PAGE SPECIFICS */
.mov-expert-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 4rem 1.5rem;
  text-align: center;
  justify-content: center;
}

.mov-bio-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 1.5rem;
}

.mov-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: center;
}

.mov-img-responsive {
  width: 100%;
  height: auto;
  display: block;
}

.mov-bio-heading {
  font-size: 1.85rem;
  color: var(--mov-shade);
  margin-bottom: 1.5rem;
}

.mov-bio-p {
  color: var(--mov-shade-soft);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .mov-bio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* RESERVE PAGE SPECIFICS */
.mov-reserve-hero {
  padding: 8dvh 1.5rem 4dvh;
  text-align: center;
}

.mov-reserve-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 10dvh;
}

.mov-reserve-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 6rem;
}

.mov-info-card {
  background-color: var(--mov-panel);
  border-radius: var(--mov-radius);
  padding: 2rem;
  box-shadow: var(--mov-shadow);
  border-top: 4px solid var(--mov-accent);
}

.mov-info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--mov-accent);
  margin-bottom: 1rem;
}

.mov-info-header h3 {
  font-size: 1.15rem;
  color: var(--mov-shade);
}

.mov-info-list {
  list-style: none;
  margin-top: 1.5rem;
}

.mov-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--mov-shade-soft);
}

.mov-bullet-dot {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(13, 148, 136, 0.1);
  color: var(--mov-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .mov-reserve-info-grid {
    grid-template-columns: 1fr;
  }
}

/* FORM STYLING */
.mov-form-container {
  max-width: 650px;
  margin: 0 auto 6rem;
  background-color: var(--mov-panel);
  padding: 3rem 2.5rem;
  border-radius: var(--mov-radius);
  box-shadow: var(--mov-shadow-hover);
}

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

.mov-form-label {
  display: block;
  font-family: var(--mov-font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--mov-shade-soft);
  margin-bottom: 0.5rem;
}

.mov-form-input, .mov-form-textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: var(--mov-font-body);
  font-size: 0.95rem;
  color: var(--mov-shade);
  transition: border-color 0.2s;
}

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

.mov-form-textarea {
  resize: vertical;
  min-height: 120px;
}

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

.mov-form-chk {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.2rem;
  accent-color: var(--mov-accent);
}

.mov-chk-label {
  font-size: 0.85rem;
  color: var(--mov-shade-soft);
  line-height: 1.4;
}

.mov-submit-btn {
  width: 100%;
  font-family: var(--mov-font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  background: var(--mov-gradient);
  border: none;
  padding: 1.15rem;
  border-radius: var(--mov-radius);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
  transition: opacity 0.25s, transform 0.2s;
}

.mov-submit-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

@media (max-width: 500px) {
  .mov-form-container {
    padding: 1.75rem 1.25rem;
  }
}

/* FAQ SECTION */
.mov-faq-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 3rem;
  color: var(--mov-shade);
}

.mov-faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mov-faq-item {
  background-color: var(--mov-panel);
  border-radius: var(--mov-radius);
  padding: 2rem;
  box-shadow: var(--mov-shadow);
}

.mov-faq-quest {
  font-size: 1.1rem;
  color: var(--mov-accent);
  margin-bottom: 0.75rem;
}

.mov-faq-ans {
  font-size: 0.95rem;
  color: var(--mov-shade-soft);
}

/* PRIVACY / TERMS PAGE STYLING */
.mov-policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 10dvh 1.5rem;
  min-height: 100vh;
}

.mov-policy-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  color: var(--mov-shade);
  margin-bottom: 3rem;
}

.mov-policy-subtitle {
  font-size: 1.5rem;
  color: var(--mov-shade);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.mov-policy-para {
  font-size: 1rem;
  color: var(--mov-shade-soft);
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* THANK PAGE STYLING */
.mov-thank-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 4rem 1.5rem;
}

.mov-thank-card {
  max-width: 600px;
  background-color: var(--mov-panel);
  border-radius: var(--mov-radius);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--mov-shadow-hover);
  text-align: center;
}

.mov-thank-icon-box {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mov-thank-title {
  font-size: 1.65rem;
  color: var(--mov-shade);
  margin-bottom: 1.5rem;
}

.mov-thank-text {
  font-size: 1rem;
  color: var(--mov-shade-soft);
  margin-bottom: 1rem;
}

.mov-action-trigger {
  display: inline-block;
  font-family: var(--mov-font-display);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--mov-gradient);
  color: #fff;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.mov-action-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(13, 148, 136, 0.4);
}