/* --- CUSTOM CORE THEMATIC VARIABLE NAMES --- */
:root {
  /* Site Theme: Dark palette / Professional style */
  --vis-deep-abyss: #0d1117;       /* Dark base background */
  --vis-surface-dark: #161b22;     /* Header, footer, floating cards background */
  --vis-surface-light: #f4f6f9;    /* Light backdrop for content zone contrast */
  --vis-text-dark: #f0f6fc;        /* Light text on dark surfaces */
  --vis-text-light: #212529;       /* Dark text on light surfaces */
  --vis-text-muted: #8b949e;       /* Secondary grey color */
  
  --vis-accent: #00adb5;           /* Main high-contrast active cyan color */
  --vis-accent-hover: #00e5ff;     /* Lighter hover cyan state */
  --vis-gradient-glow: linear-gradient(135deg, #00adb5 0%, #1c1c2e 100%);
  
  /* Fonts */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Lato', sans-serif;
  
  /* Visual Settings */
  --vis-radius-soft: 16px;
  --vis-spacing-normal: 10dvh;
  --vis-shadow-depth: 0 10px 30px rgba(0, 173, 181, 0.12);
}

/* --- GENERAL RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--vis-deep-abyss);
  color: var(--vis-text-dark);
  overflow-x: hidden;
}

body.vis-body-dark {
  background-color: var(--vis-deep-abyss);
}

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

/* Scroll Progress Bar (CSS-only scroll-driven animations) */
.vis-scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--vis-accent);
  width: 0%;
  z-index: 10000;
  animation: vis-bar-grow linear;
  animation-timeline: scroll();
}

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

/* --- HEADER STYLES (PRESET A - STICKY AND DARK) --- */
.vis-main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--vis-surface-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.vis-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 24px;
}

.vis-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vis-logo-svg {
  width: 32px;
  height: 32px;
}

.vis-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vis-text-dark);
  letter-spacing: 1px;
}

/* Nav Menu and Responsive Hamburger */
.vis-menu-trigger {
  display: none;
}

.vis-burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.vis-burger-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--vis-text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.vis-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.vis-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--vis-text-muted);
  position: relative;
  padding: 6px 0;
}

.vis-nav-link:hover, 
.vis-nav-link.vis-active {
  color: var(--vis-accent);
}

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

.vis-nav-link:hover::after,
.vis-nav-link.vis-active::after {
  width: 100%;
}

.vis-nav-cta {
  background-color: var(--vis-accent);
  color: var(--vis-deep-abyss) !important;
  padding: 8px 20px;
  border-radius: 999px; /* Pill style */
  font-weight: 700;
}

.vis-nav-cta:hover {
  background-color: var(--vis-accent-hover);
  transform: scale(1.03);
}

.vis-nav-cta::after {
  display: none;
}

/* Hamburger mobile logic */
@media (max-width: 768px) {
  .vis-burger-btn {
    display: flex;
  }

  .vis-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--vis-surface-dark);
    flex-direction: column;
    justify-content: center;
    gap: 35px;
    box-shadow: -10px 0 35px rgba(0,0,0,0.5);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  .vis-menu-trigger:checked ~ .vis-nav-menu {
    right: 0;
  }

  .vis-menu-trigger:checked ~ .vis-burger-btn span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .vis-menu-trigger:checked ~ .vis-burger-btn span:nth-child(2) {
    opacity: 0;
  }

  .vis-menu-trigger:checked ~ .vis-burger-btn span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}

/* --- HERO SECTION (PRESET A - FULL SCREEN DIALOG WITH OVERLAY) --- */
.vis-hero-wrapper {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.vis-hero-inner {
  max-width: 800px;
}

.vis-main-heading {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--vis-text-dark);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.vis-hero-subtitle {
  font-size: 1.25rem;
  color: var(--vis-text-dark);
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.vis-cta-pill {
  display: inline-block;
  background-color: var(--vis-accent);
  color: var(--vis-deep-abyss);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 999px; /* Pill */
  box-shadow: 0 4px 15px rgba(0, 173, 181, 0.35);
  letter-spacing: 0.5px;
}

.vis-cta-pill:hover {
  background-color: var(--vis-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 173, 181, 0.5);
}

@media (max-width: 768px) {
  .vis-main-heading {
    font-size: 2.5rem;
  }
  .vis-hero-subtitle {
    font-size: 1.1rem;
  }
}

/* --- HERO MIN (EXPERT & RESERVE HERO) --- */
.vis-hero-min {
  height: 48vh;
  min-height: 350px;
}

/* --- FLOATING STAT BAR --- */
.vis-floating-bar-zone {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.vis-floating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background-color: var(--vis-surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--vis-radius-soft);
  padding: 30px;
  box-shadow: var(--vis-shadow-depth);
}

.vis-stat-card {
  text-align: center;
}

.vis-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vis-accent);
  margin-bottom: 8px;
}

.vis-stat-desc {
  font-size: 0.95rem;
  color: var(--vis-text-muted);
}

/* --- LIGHT CONTENT ZONES (ZIGZAG SECTIONS) --- */
.vis-zigzag-section {
  background-color: var(--vis-surface-light);
  color: var(--vis-text-light);
  padding: var(--vis-spacing-normal) 24px;
}

.vis-zigzag-row {
  max-width: 1100px;
  margin: 0 auto 80px auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.vis-zigzag-row:last-child {
  margin-bottom: 0;
}

.vis-zigzag-media {
  flex: 0 0 45%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: var(--vis-radius-soft);
}

/* Slanted clip paths for zigzag images */
.vis-clip-right {
  clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.vis-clip-left {
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.vis-zigzag-text {
  flex: 1;
}

.vis-section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--vis-accent);
  border-bottom: 2px solid var(--vis-accent);
  padding-bottom: 4px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.vis-section-heading {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--vis-deep-abyss);
}

/* Keep heading light if on dark background */
.vis-body-dark .vis-section-heading {
  color: inherit;
}

.vis-zigzag-text .vis-section-heading {
  color: var(--vis-deep-abyss);
}

.vis-paragraph {
  font-size: 1.05rem;
  margin-bottom: 16px;
  opacity: 0.85;
}

.vis-vector-decor {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .vis-zigzag-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
  .vis-zigzag-row.vis-row-reverse {
    flex-direction: column-reverse;
  }
  .vis-clip-right, .vis-clip-left {
    clip-path: none;
    width: 100%;
    height: 250px;
  }
  .vis-zigzag-media {
    flex: none;
    width: 100%;
  }
}

/* --- FEATURES GRID (DARK GRID WITH ACCENT STRIPS) --- */
.vis-features-container {
  padding: var(--vis-spacing-normal) 24px;
  background-color: var(--vis-deep-abyss);
}

.vis-section-header-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.vis-section-header-center .vis-section-heading {
  color: var(--vis-text-dark);
}

.vis-section-subtitle {
  font-size: 1.1rem;
  color: var(--vis-text-muted);
}

.vis-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.vis-feature-card {
  background-color: var(--vis-surface-dark);
  border-left: 4px solid var(--vis-accent); /* Color strip left */
  border-radius: var(--vis-radius-soft);
  padding: 35px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.vis-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vis-shadow-depth);
}

.vis-feature-icon-box {
  color: var(--vis-accent);
  margin-bottom: 20px;
}

.vis-feat-icon {
  width: 36px;
  height: 36px;
}

.vis-feature-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--vis-text-dark);
  margin-bottom: 12px;
}

.vis-feature-text {
  font-size: 0.95rem;
  color: var(--vis-text-muted);
  line-height: 1.5;
}

/* --- HOW IT WORKS (VERTICAL TIMELINE PRESET A) --- */
.vis-timeline-section {
  background-color: var(--vis-surface-light);
  color: var(--vis-text-light);
  padding: var(--vis-spacing-normal) 24px;
}

.vis-timeline-section .vis-section-heading {
  color: var(--vis-deep-abyss);
}

.vis-timeline-flow {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.vis-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  background-color: rgba(0, 173, 181, 0.3);
}

.vis-timeline-item {
  position: relative;
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.vis-timeline-item:last-child {
  margin-bottom: 0;
}

.vis-timeline-badge {
  position: relative;
  flex: 0 0 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--vis-deep-abyss);
  color: var(--vis-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  border: 3px solid var(--vis-accent);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 2;
}

.vis-timeline-content {
  flex: 1;
  background-color: #ffffff;
  padding: 24px 30px;
  border-radius: var(--vis-radius-soft);
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.vis-timeline-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--vis-deep-abyss);
  margin-bottom: 8px;
}

.vis-timeline-text {
  font-size: 0.95rem;
  color: #495057;
}

@media (max-width: 576px) {
  .vis-timeline-line {
    display: none;
  }
  .vis-timeline-item {
    flex-direction: column;
    gap: 15px;
  }
  .vis-timeline-badge {
    flex: none;
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
}

/* --- CTA STRIP (PARALLAX INSPIRED) --- */
.vis-cta-strip {
  background-size: cover;
  background-position: center;
  padding: var(--vis-spacing-normal) 24px;
  text-align: center;
  color: var(--vis-text-dark);
}

.vis-cta-strip-inner {
  max-width: 750px;
  margin: 0 auto;
}

.vis-cta-strip-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.vis-cta-strip-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* --- EXPERT PAGE BIO SPLIT --- */
.vis-expert-bio-section {
  background-color: var(--vis-surface-light);
  color: var(--vis-text-light);
  padding: var(--vis-spacing-normal) 24px;
}

.vis-expert-split {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.vis-expert-image-shell {
  flex: 0 0 45%;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: var(--vis-radius-soft);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.vis-expert-text-shell {
  flex: 1;
}

.vis-expert-text-shell .vis-section-heading {
  color: var(--vis-deep-abyss);
}

@media (max-width: 768px) {
  .vis-expert-split {
    flex-direction: column;
  }
  .vis-expert-image-shell {
    flex: none;
    width: 100%;
    height: 350px;
  }
}

.vis-deep-info-section {
  padding: var(--vis-spacing-normal) 24px;
}

/* --- RESERVE PAGE CONTENT & FORM --- */
.vis-info-cards-zone {
  background-color: var(--vis-surface-light);
  padding: var(--vis-spacing-normal) 24px;
  color: var(--vis-text-light);
}

.vis-grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.vis-info-card-item {
  background-color: #ffffff;
  padding: 35px;
  border-radius: var(--vis-radius-soft);
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  position: relative;
}

.vis-card-num-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--vis-accent);
  color: var(--vis-deep-abyss);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.vis-info-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--vis-deep-abyss);
  margin-bottom: 12px;
}

.vis-info-card-desc {
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 24px;
}

.vis-bullet-list {
  list-style: none;
}

.vis-bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--vis-deep-abyss);
}

.vis-bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--vis-accent);
}

/* Form Styles */
.vis-form-wrapper-section {
  padding: var(--vis-spacing-normal) 24px;
  background-color: var(--vis-deep-abyss);
}

.vis-form-card {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--vis-surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--vis-radius-soft);
  padding: 40px;
  box-shadow: var(--vis-shadow-depth);
}

.vis-form-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--vis-text-dark);
  margin-bottom: 8px;
  text-align: center;
}

.vis-form-card-subtitle {
  font-size: 0.95rem;
  color: var(--vis-text-muted);
  text-align: center;
  margin-bottom: 30px;
}

.vis-booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vis-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vis-form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vis-text-dark);
}

.vis-form-input, .vis-form-textarea {
  font-family: var(--font-body);
  background-color: var(--vis-deep-abyss);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--vis-text-dark);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

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

.vis-form-textarea {
  height: 100px;
  resize: vertical;
}

.vis-form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.vis-form-checkbox {
  margin-top: 4px;
  cursor: pointer;
}

.vis-checkbox-label {
  font-size: 0.85rem;
  color: var(--vis-text-muted);
}

.vis-checkbox-label a {
  color: var(--vis-accent);
  text-decoration: underline;
}

.vis-submit-btn {
  font-family: var(--font-display);
  background-color: var(--vis-accent);
  color: var(--vis-deep-abyss);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  padding: 14px;
  border-radius: 999px; /* Pill */
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.vis-submit-btn:hover {
  background-color: var(--vis-accent-hover);
  transform: translateY(-2px);
}

.vis-form-footer-mail {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--vis-text-muted);
}

.vis-mail-link {
  color: var(--vis-accent);
  font-weight: 600;
}

/* FAQ Box */
.vis-faq-container {
  background-color: var(--vis-surface-light);
  color: var(--vis-text-light);
  padding: var(--vis-spacing-normal) 24px;
}

.vis-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.vis-faq-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: var(--vis-radius-soft);
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.vis-faq-question {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--vis-deep-abyss);
  margin-bottom: 12px;
}

.vis-faq-answer {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
}

/* --- THANK YOU PAGE --- */
.vis-thank-page-main {
  height: 80vh;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
}

.vis-thank-content-shell {
  max-width: 650px;
  background-color: var(--vis-surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 40px;
  border-radius: var(--vis-radius-soft);
  text-align: center;
  box-shadow: var(--vis-shadow-depth);
}

.vis-success-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 173, 181, 0.15);
  color: var(--vis-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px auto;
}

.vis-check-icon {
  width: 40px;
  height: 40px;
}

.vis-thank-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--vis-text-dark);
  margin-bottom: 16px;
}

.vis-thank-paragraph {
  font-size: 1.05rem;
  color: var(--vis-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.vis-thank-action-box {
  margin-top: 35px;
}

/* --- LEGAL PAGE LAYOUT --- */
.vis-legal-page-layout {
  padding: 60px 24px;
  background-color: var(--vis-deep-abyss);
}

.vis-legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--vis-surface-dark);
  padding: 50px;
  border-radius: var(--vis-radius-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vis-legal-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--vis-text-dark);
  margin-bottom: 10px;
}

.vis-legal-date {
  font-size: 0.9rem;
  color: var(--vis-text-muted);
  margin-bottom: 40px;
}

.vis-legal-section {
  margin-bottom: 35px;
}

.vis-legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--vis-accent);
  margin-bottom: 15px;
}

.vis-legal-section p {
  font-size: 1rem;
  color: var(--vis-text-muted);
  margin-bottom: 15px;
  line-height: 1.7;
}

@media (max-width: 576px) {
  .vis-legal-wrapper {
    padding: 30px 20px;
  }
}

/* --- FOOTER STYLES --- */
.vis-main-footer {
  background-color: var(--vis-surface-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vis-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px 24px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.vis-footer-brand {
  flex: 1 1 350px;
}

.vis-footer-desc {
  font-size: 0.95rem;
  color: var(--vis-text-muted);
  margin-top: 18px;
  line-height: 1.6;
}

.vis-footer-links-group {
  flex: 0 1 250px;
}

.vis-footer-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--vis-text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vis-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vis-footer-nav a {
  font-size: 0.95rem;
  color: var(--vis-text-muted);
}

.vis-footer-nav a:hover {
  color: var(--vis-accent);
}

.vis-footer-disclaimer-bar {
  background-color: var(--vis-deep-abyss);
  padding: 30px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vis-disclaimer-text {
  font-size: 0.8rem;
  color: var(--vis-text-muted);
  max-width: 800px;
  margin: 0 auto 12px auto;
  line-height: 1.5;
}

.vis-copyright-text {
  font-size: 0.85rem;
  color: var(--vis-text-muted);
  opacity: 0.8;
}

/* --- COOKIE BANNER --- */
.vis-cookie-banner-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vis-surface-dark);
  border-top: 2px solid var(--vis-accent);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  z-index: 9999;
  padding: 20px;
  display: none; /* Controlled by JS */
}

.vis-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.vis-cookie-text {
  font-size: 0.9rem;
  color: var(--vis-text-muted);
  flex: 1 1 600px;
}

.vis-cookie-buttons {
  display: flex;
  gap: 15px;
}

.vis-cookie-btn {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.vis-cookie-btn-primary {
  background-color: var(--vis-accent);
  color: var(--vis-deep-abyss);
}

.vis-cookie-btn-primary:hover {
  background-color: var(--vis-accent-hover);
}

.vis-cookie-btn-secondary {
  background-color: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--vis-text-dark);
}

.vis-cookie-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .vis-cookie-content {
    flex-direction: column;
    text-align: center;
  }
}