/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  /* Theme-specific variables matching Preset D (Dark Immersive) */
  --vista-bg-deep: #060913;
  --vista-depth-surface: #0e1322;
  --vista-glass-bg: rgba(14, 19, 34, 0.75);
  --vista-glass-glow: rgba(0, 242, 254, 0.15);
  --vista-glass-border: rgba(255, 255, 255, 0.12);
  --vista-accent-teal: #00f2fe;
  --vista-accent-ocean: #4facfe;
  --vista-gradient-glow: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --vista-text-pure: #ffffff;
  --vista-text-soft: #a0aec0;
  --vista-text-muted: #64748b;
  
  /* Fonts */
  --vista-font-title: 'Oswald', sans-serif;
  --vista-font-body: 'Inter', sans-serif;
  
  /* UI Scalings (Soft corners, Deep shadows, Spacious padding) */
  --vista-radius-soft: 16px;
  --vista-shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 242, 254, 0.15);
  --vista-shadow-glow: 0 0 15px rgba(0, 242, 254, 0.35);
  --vista-transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --vista-section-padding: 12dvh 2rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--vista-bg-deep);
  color: var(--vista-text-pure);
  font-family: var(--vista-font-body);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--vista-font-title);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--vista-transition-smooth);
}

ul {
  list-style: none;
}

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

/* --- SCROLL PROGRESS BAR --- */
.vis-scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--vista-gradient-glow);
  width: 0%;
  animation: vis-grow-bar linear;
  animation-timeline: scroll();
}

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

/* --- SCROLL VIEWPORT REVEAL --- */
.vis-reveal {
  animation: vis-fade-in-up linear both;
  animation-timeline: view();
  animation-range: entry 10% entry 40%;
}

@keyframes vis-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- SHARED HEADER --- */
.vis-main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 9, 19, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vista-glass-border);
  padding: 1rem 2rem;
}

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

.vis-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--vista-font-title);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--vista-text-pure);
}

.vis-brand-logo svg {
  filter: drop-shadow(var(--vista-shadow-glow));
}

.vis-nav-checkbox {
  display: none;
}

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

.vis-burger-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--vista-accent-teal);
  border-radius: 2px;
  transition: var(--vista-transition-smooth);
}

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

.vis-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vista-text-soft);
  position: relative;
  padding: 0.5rem 0;
}

.vis-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vista-gradient-glow);
  transition: var(--vista-transition-smooth);
}

.vis-nav-link:hover {
  color: var(--vista-text-pure);
}

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

.vis-nav-cta {
  background: var(--vista-gradient-glow);
  color: var(--vista-bg-deep);
  font-family: var(--vista-font-title);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-glow);
  text-transform: uppercase;
}

.vis-nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
}

/* --- FOOTER --- */
.vis-main-footer {
  background-color: var(--vista-depth-surface);
  border-top: 1px solid var(--vista-glass-border);
  padding: 5rem 2rem 2rem;
  margin-top: auto;
}

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

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

.vis-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vis-footer-desc {
  color: var(--vista-text-soft);
  font-size: 0.95rem;
}

.vis-footer-links-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.vis-footer-links-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background-color: var(--vista-accent-teal);
}

.vis-footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vis-footer-links-list a {
  color: var(--vista-text-soft);
  font-size: 0.95rem;
}

.vis-footer-links-list a:hover {
  color: var(--vista-accent-teal);
  padding-left: 5px;
}

.vis-footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vis-footer-note {
  font-size: 0.85rem;
  color: var(--vista-text-muted);
  line-height: 1.5;
}

.vis-footer-disclaimer-box {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.vis-footer-disclaimer-text {
  font-size: 0.8rem;
  color: var(--vista-text-muted);
  text-align: center;
  line-height: 1.6;
}

.vis-footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: var(--vista-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

/* --- HERO SECTION --- */
.vis-hero-section {
  min-height: 100vh;
  position: relative;
  background-image: url('img/bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.vis-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 9, 19, 0.4) 0%, rgba(6, 9, 19, 0.95) 100%);
  z-index: 1;
}

.vis-hero-glass-card {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  background: var(--vista-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--vista-glass-border);
  padding: 4rem 3rem;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-deep);
  text-align: center;
}

.vis-hero-tagline {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vista-accent-teal);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.vis-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--vista-text-pure);
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.vis-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--vista-text-soft);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vis-hero-btn {
  display: inline-block;
  background: var(--vista-gradient-glow);
  color: var(--vista-bg-deep);
  font-family: var(--vista-font-title);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-glow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vis-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.5);
  filter: brightness(1.1);
}

/* --- CONTENT SECTION (IMAGE LEFT, TEXT RIGHT) --- */
.vis-intro-section {
  padding: var(--vista-section-padding);
  background-color: var(--vista-bg-deep);
  position: relative;
}

.vis-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vis-intro-visual {
  position: relative;
  height: 550px;
  border-radius: var(--vista-radius-soft);
  overflow: hidden;
  box-shadow: var(--vista-shadow-deep);
}

.vis-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--vista-transition-smooth);
}

.vis-intro-visual:hover img {
  transform: scale(1.05);
}

.vis-intro-visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(6, 9, 19, 0.3), rgba(6, 9, 19, 0));
}

.vis-intro-content-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vis-intro-preheading {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--vista-accent-teal);
  letter-spacing: 0.2em;
  font-weight: bold;
}

.vis-intro-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--vista-text-pure);
}

.vis-intro-text {
  color: var(--vista-text-soft);
  font-size: 1.1rem;
  line-height: 1.8;
}

.vis-intro-points-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.vis-intro-point-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vis-intro-point-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--vista-accent-teal);
  margin-top: 0.5rem;
  box-shadow: var(--vista-shadow-glow);
  flex-shrink: 0;
}

.vis-intro-point-desc {
  color: var(--vista-text-pure);
  font-weight: 600;
  font-size: 1.05rem;
}

/* --- FEATURES SECTION --- */
.vis-feat-section {
  padding: var(--vista-section-padding);
  background-color: var(--vista-depth-surface);
  position: relative;
}

.vis-feat-header {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}

.vis-feat-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.vis-feat-subtitle {
  color: var(--vista-text-soft);
  font-size: 1.1rem;
}

.vis-feat-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.vis-feat-card {
  background: var(--vista-glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--vista-glass-border);
  border-top: 3px solid var(--vista-accent-ocean);
  border-radius: var(--vista-radius-soft);
  padding: 3rem 2rem;
  transition: var(--vista-transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vis-feat-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--vista-accent-teal);
  box-shadow: var(--vista-shadow-deep);
}

.vis-feat-icon-wrap {
  margin-bottom: 2rem;
  color: var(--vista-accent-teal);
  display: inline-block;
}

.vis-feat-icon-wrap svg {
  filter: drop-shadow(var(--vista-shadow-glow));
}

.vis-feat-card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--vista-text-pure);
}

.vis-feat-card-text {
  color: var(--vista-text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- HOW IT WORKS (VERTICAL TIMELINE PRESET D) --- */
.vis-timeline-section {
  padding: var(--vista-section-padding);
  background-color: var(--vista-bg-deep);
}

.vis-timeline-header {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}

.vis-timeline-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.vis-timeline-subtitle {
  color: var(--vista-text-soft);
  font-size: 1.1rem;
}

.vis-timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.vis-timeline-vertical-line {
  position: absolute;
  top: 0;
  left: 14px;
  height: 100%;
  width: 3px;
  background: var(--vista-gradient-glow);
  box-shadow: var(--vista-shadow-glow);
}

.vis-timeline-node {
  position: relative;
  margin-bottom: 4rem;
}

.vis-timeline-node:last-of-type {
  margin-bottom: 0;
}

.vis-timeline-dot {
  position: absolute;
  left: -3rem;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vista-depth-surface);
  border: 3px solid var(--vista-accent-teal);
  box-shadow: var(--vista-shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: var(--vista-font-title);
  color: var(--vista-accent-teal);
}

.vis-timeline-info {
  background: var(--vista-glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--vista-glass-border);
  border-radius: var(--vista-radius-soft);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.vis-timeline-card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--vista-text-pure);
}

.vis-timeline-card-desc {
  color: var(--vista-text-soft);
  line-height: 1.7;
  font-size: 1rem;
}

/* --- CTA STRIP --- */
.vis-cta-section {
  padding: var(--vista-section-padding);
  background-color: var(--vista-depth-surface);
  border-top: 1px solid var(--vista-glass-border);
  border-bottom: 1px solid var(--vista-glass-border);
}

.vis-cta-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.vis-cta-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.2;
}

.vis-cta-tag {
  color: var(--vista-accent-teal);
  letter-spacing: 0.15em;
  font-size: 1.1rem;
}

.vis-cta-action-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--vista-accent-teal);
  color: var(--vista-text-pure);
  font-family: var(--vista-font-title);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: var(--vista-radius-soft);
  text-transform: uppercase;
  transition: var(--vista-transition-smooth);
}

.vis-cta-action-btn:hover {
  background: var(--vista-gradient-glow);
  color: var(--vista-bg-deep);
  border-color: transparent;
  box-shadow: var(--vista-shadow-glow);
  transform: translateY(-3px);
}

/* --- COOKIE BANNER --- */
.vis-cookie-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 19, 34, 0.95);
  border-top: 2px solid var(--vista-accent-teal);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  display: none;
}

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

.vis-cookie-text {
  font-size: 0.95rem;
  color: var(--vista-text-soft);
}

.vis-cookie-controls {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.vis-cookie-opt {
  padding: 0.6rem 1.5rem;
  border-radius: var(--vista-radius-soft);
  font-weight: bold;
  cursor: pointer;
  transition: var(--vista-transition-smooth);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.vis-cookie-opt-agree {
  background: var(--vista-gradient-glow);
  color: var(--vista-bg-deep);
  border: none;
}

.vis-cookie-opt-agree:hover {
  opacity: 0.9;
}

.vis-cookie-opt-refuse {
  background: transparent;
  border: 1px solid var(--vista-text-muted);
  color: var(--vista-text-soft);
}

.vis-cookie-opt-refuse:hover {
  border-color: var(--vista-text-pure);
  color: var(--vista-text-pure);
}

/* --- EXPERT ACCORDION (PRESET D) --- */
.vis-exp-accord-sec {
  padding: var(--vista-section-padding);
  background-color: var(--vista-bg-deep);
}

.vis-exp-accord-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.vis-exp-accord-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.vis-exp-accord-desc {
  color: var(--vista-text-soft);
  font-size: 1.1rem;
}

.vis-accord-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vis-accord-panel {
  background: var(--vista-glass-bg);
  border: 1px solid var(--vista-glass-border);
  border-radius: var(--vista-radius-soft);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.vis-accord-panel::before {
  content: attr(data-index);
  position: absolute;
  top: -15px;
  right: 15px;
  font-size: 6rem;
  font-family: var(--vista-font-title);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.vis-accord-tab-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--vista-accent-teal);
}

.vis-accord-tab-content-text {
  color: var(--vista-text-soft);
  line-height: 1.7;
}

/* --- EXPERT STATS SECTION --- */
.vis-stat-strip {
  padding: var(--vista-section-padding);
  background-color: var(--vista-depth-surface);
}

.vis-stat-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  text-align: center;
}

.vis-stat-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vis-stat-digit {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-family: var(--vista-font-title);
  font-weight: 800;
  color: var(--vista-accent-teal);
  text-shadow: var(--vista-shadow-glow);
}

.vis-stat-label {
  color: var(--vista-text-pure);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* --- RESERVE LAYOUT (PRESET D) --- */
.vis-booking-hero {
  min-height: 100vh;
  position: relative;
  background-image: url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
}

.vis-booking-grid {
  position: relative;
  z-index: 2;
  max-width: 650px;
  width: 100%;
}

.vis-booking-card {
  background: var(--vista-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--vista-glass-border);
  padding: 4rem 3rem;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-deep);
}

.vis-booking-card-head {
  text-align: center;
  margin-bottom: 3rem;
}

.vis-booking-card-title {
  font-size: 2.2rem;
  color: var(--vista-text-pure);
  margin-bottom: 1rem;
}

.vis-booking-card-subtitle {
  color: var(--vista-text-soft);
  font-size: 1rem;
}

.vis-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.vis-booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vis-booking-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--vista-text-soft);
  letter-spacing: 0.1em;
}

.vis-booking-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--vista-glass-border);
  border-radius: var(--vista-radius-soft);
  padding: 1rem 1.25rem;
  color: var(--vista-text-pure);
  font-family: var(--vista-font-body);
  font-size: 1rem;
  transition: var(--vista-transition-smooth);
}

.vis-booking-input:focus {
  outline: none;
  border-color: var(--vista-accent-teal);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.vis-booking-opt-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.vis-booking-opt-check input {
  margin-top: 0.25rem;
  cursor: pointer;
}

.vis-booking-opt-text {
  font-size: 0.85rem;
  color: var(--vista-text-soft);
  line-height: 1.4;
}

.vis-booking-submit {
  background: var(--vista-gradient-glow);
  color: var(--vista-bg-deep);
  font-family: var(--vista-font-title);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.1rem;
  border: none;
  border-radius: var(--vista-radius-soft);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--vista-transition-smooth);
  box-shadow: var(--vista-shadow-glow);
}

.vis-booking-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
}

/* --- BOOKING INFO (3 Cards with 4 numbered lists each) --- */
.vis-book-info-sec {
  padding: var(--vista-section-padding);
  background-color: var(--vista-bg-deep);
}

.vis-book-info-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.vis-info-block-card {
  background: var(--vista-depth-surface);
  border: 1px solid var(--vista-glass-border);
  border-radius: var(--vista-radius-soft);
  padding: 3rem 2rem;
}

.vis-info-block-hdr {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vis-info-block-icon {
  color: var(--vista-accent-teal);
}

.vis-info-block-title {
  font-size: 1.3rem;
  color: var(--vista-text-pure);
}

.vis-info-block-desc {
  color: var(--vista-text-soft);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.vis-info-block-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vis-info-block-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vis-info-block-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--vista-accent-teal);
  color: var(--vista-accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.vis-info-block-text {
  font-size: 0.9rem;
  color: var(--vista-text-pure);
}

/* --- FAQ SECTION --- */
.vis-faq-section {
  padding: var(--vista-section-padding);
  background-color: var(--vista-depth-surface);
  border-top: 1px solid var(--vista-glass-border);
}

.vis-faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.vis-faq-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.vis-faq-subtitle {
  color: var(--vista-text-soft);
  font-size: 1.1rem;
}

.vis-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vis-faq-card {
  background: var(--vista-glass-bg);
  border: 1px solid var(--vista-glass-border);
  padding: 2.5rem;
  border-radius: var(--vista-radius-soft);
}

.vis-faq-question {
  font-size: 1.25rem;
  color: var(--vista-accent-teal);
  margin-bottom: 1rem;
}

.vis-faq-answer {
  color: var(--vista-text-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- CONTACT SEC / MAILTO --- */
.vis-contact-area {
  padding: var(--vista-section-padding);
  background-color: var(--vista-bg-deep);
  text-align: center;
}

.vis-contact-desc {
  font-size: 1.2rem;
  color: var(--vista-text-soft);
  margin-bottom: 2rem;
}

.vis-contact-link {
  font-size: 1.75rem;
  font-family: var(--vista-font-title);
  color: var(--vista-accent-teal);
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vis-contact-link:hover {
  text-shadow: var(--vista-shadow-glow);
  color: var(--vista-text-pure);
}

/* --- LEGAL & PRIVACY LAYOUT --- */
.vis-legal-section {
  padding: 8rem 2rem 4rem;
  background-color: var(--vista-bg-deep);
}

.vis-legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--vista-depth-surface);
  border: 1px solid var(--vista-glass-border);
  border-radius: var(--vista-radius-soft);
  padding: 4rem 3rem;
}

.vis-legal-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--vista-text-pure);
  text-shadow: var(--vista-shadow-glow);
}

.vis-legal-subtitle {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--vista-accent-teal);
}

.vis-legal-text {
  color: var(--vista-text-soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* --- THANK YOU LAYOUT --- */
.vis-thanks-hero {
  min-height: 100vh;
  position: relative;
  background-image: url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
}

.vis-thanks-card {
  position: relative;
  z-index: 2;
  max-width: 650px;
  background: var(--vista-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--vista-glass-border);
  padding: 5rem 3rem;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-deep);
}

.vis-thanks-check-icon {
  color: var(--vista-accent-teal);
  margin-bottom: 2rem;
  display: inline-block;
}

.vis-thanks-check-icon svg {
  filter: drop-shadow(var(--vista-shadow-glow));
}

.vis-thanks-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--vista-text-pure);
}

.vis-thanks-subtitle {
  color: var(--vista-text-soft);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
  .vis-intro-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vis-intro-visual {
    height: 380px;
  }
}

@media (max-width: 768px) {
  --vista-section-padding: 8dvh 1.5rem;
  
  .vis-burger-btn {
    display: flex;
  }
  
  .vis-nav-items {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--vista-bg-deep);
    border-top: 1px solid var(--vista-glass-border);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: var(--vista-transition-smooth);
    align-items: flex-start;
    z-index: 999;
  }
  
  .vis-nav-checkbox:checked ~ .vis-nav-items {
    left: 0;
  }
  
  .vis-nav-checkbox:checked ~ .vis-burger-btn span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .vis-nav-checkbox:checked ~ .vis-burger-btn span:nth-child(2) {
    opacity: 0;
  }
  
  .vis-nav-checkbox:checked ~ .vis-burger-btn span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .vis-hero-glass-card {
    padding: 2.5rem 1.5rem;
  }
  
  .vis-booking-card {
    padding: 2.5rem 1.5rem;
  }
  
  .vis-timeline-container {
    padding-left: 2rem;
  }
  
  .vis-cookie-box {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}