/* ==========================================================================
   STYLE DEFINITIONS & SYSTEM CONFIGURATION
   ========================================================================== */

/* Custom theme variables based on eye health & optical aesthetics */
:root {
  --vis-deep-void: #060913;
  --vis-glass-base: rgba(13, 20, 38, 0.65);
  --vis-glass-border: rgba(255, 255, 255, 0.08);
  --vis-glass-glow-border: rgba(0, 242, 254, 0.25);
  
  --vis-spectra-cyan: #00f2fe;
  --vis-spectra-azure: #4facfe;
  --vis-spectra-glow: rgba(0, 242, 254, 0.35);
  --vis-neutral-white: #ffffff;
  --vis-muted-cosmic: #94a3b8;
  
  --vis-heading-font: 'Montserrat', sans-serif;
  --vis-body-font: 'Poppins', sans-serif;
  
  --vis-pad-scale: 10dvh;
  --vis-rounded-soft: 16px;
  --vis-shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 242, 254, 0.1);
  --vis-transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--vis-deep-void);
  color: var(--vis-neutral-white);
  font-family: var(--vis-body-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(79, 172, 254, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vis-heading-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
  color: var(--vis-neutral-white);
}

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

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

/* Scroll Progress Bar */
.vis-scroll-gauge {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vis-spectra-cyan), var(--vis-spectra-azure));
  width: 0%;
  z-index: 10000;
  animation: vis-gauge-anim linear;
  animation-timeline: scroll();
}

@keyframes vis-gauge-anim {
  to { width: 100%; }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.vis-top-navigation {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(6, 9, 19, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--vis-glass-border);
  transition: var(--vis-transition-smooth);
}

.vis-nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vis-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--vis-heading-font);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--vis-neutral-white);
}

.vis-logo-wrapper svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px var(--vis-spectra-glow));
}

.vis-logo-wrapper span {
  background: linear-gradient(135deg, var(--vis-neutral-white) 30%, var(--vis-spectra-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hamburger menu (CSS Only) */
.vis-menu-trigger {
  display: none;
}

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

.vis-menu-btn-label span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--vis-neutral-white);
  border-radius: 2px;
  transition: var(--vis-transition-smooth);
}

.vis-menu-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.vis-menu-links a {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vis-muted-cosmic);
  position: relative;
  padding: 0.5rem 0;
}

.vis-menu-links a:hover,
.vis-menu-links a.active {
  color: var(--vis-spectra-cyan);
  text-shadow: 0 0 10px var(--vis-spectra-glow);
}

.vis-menu-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vis-spectra-cyan);
  box-shadow: 0 0 8px var(--vis-spectra-cyan);
  transition: var(--vis-transition-smooth);
}

.vis-menu-links a:hover::after,
.vis-menu-links a.active::after {
  width: 100%;
}

/* ==========================================================================
   HERO / IMMERSIVE SECTIONS
   ========================================================================== */
.vis-hero-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vis-hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 9, 19, 0.4) 0%, rgba(6, 9, 19, 0.95) 90%);
}

.vis-hero-backdrop-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4) contrast(1.1);
}

.vis-glass-panel {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: 3.5rem;
  border-radius: var(--vis-rounded-soft);
  background: var(--vis-glass-base);
  backdrop-filter: blur(16px);
  border: 1px solid var(--vis-glass-border);
  box-shadow: var(--vis-shadow-deep);
  text-align: center;
}

.vis-glass-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--vis-rounded-soft);
  padding: 1px;
  background: linear-gradient(135deg, var(--vis-glass-glow-border), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.vis-heading-xl {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--vis-neutral-white) 40%, #e2e8f0, var(--vis-spectra-azure));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.vis-sub-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--vis-muted-cosmic);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
}

/* Action Triggers (Buttons) */
.vis-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.8rem;
  border-radius: var(--vis-rounded-soft);
  font-family: var(--vis-heading-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--vis-transition-smooth);
}

.vis-action-primary {
  background: linear-gradient(135deg, var(--vis-spectra-cyan), var(--vis-spectra-azure));
  color: var(--vis-deep-void);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
}

.vis-action-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.65);
}

.vis-action-ghost {
  border: 2px solid var(--vis-spectra-cyan);
  background: transparent;
  color: var(--vis-spectra-cyan);
}

.vis-action-ghost:hover {
  background: rgba(0, 242, 254, 0.1);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.3);
  transform: translateY(-2px);
}

/* ==========================================================================
   CONTENT LAYOUT (HALF SCREEN STYLE)
   ========================================================================== */
.vis-content-layout {
  display: flex;
  min-height: 80vh;
  background: var(--vis-deep-void);
  position: relative;
  align-items: stretch;
}

.vis-content-column-img {
  flex: 1;
  position: relative;
  min-height: 450px;
}

.vis-content-column-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vis-content-column-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--vis-deep-void) 100%);
}

.vis-content-column-text {
  flex: 1;
  padding: var(--vis-pad-scale) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vis-section-indicator {
  color: var(--vis-spectra-cyan);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  display: block;
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.vis-heading-lg {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
}

.vis-rich-text {
  color: var(--vis-muted-cosmic);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* Custom Bullet List */
.vis-bullet-list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.vis-bullet-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--vis-neutral-white);
  font-size: 1.05rem;
}

.vis-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--vis-spectra-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--vis-spectra-cyan);
}

/* ==========================================================================
   FEATURES / BENEFITS CARD GRID
   ========================================================================== */
.vis-benefit-section {
  padding: var(--vis-pad-scale) 2rem;
  background: rgba(8, 12, 24, 0.9);
  position: relative;
}

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

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

.vis-card-glass {
  background: var(--vis-glass-base);
  border: 1px solid var(--vis-glass-border);
  border-top: 3px solid var(--vis-spectra-cyan);
  border-radius: var(--vis-rounded-soft);
  padding: 3rem 2.2rem;
  transition: var(--vis-transition-smooth);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.vis-card-glass:hover {
  transform: translateY(-8px);
  border-top-color: var(--vis-spectra-azure);
  box-shadow: var(--vis-shadow-deep);
}

.vis-card-icon {
  margin-bottom: 2rem;
  color: var(--vis-spectra-cyan);
}

.vis-card-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 8px var(--vis-spectra-glow));
}

.vis-card-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.vis-card-desc {
  color: var(--vis-muted-cosmic);
}

/* ==========================================================================
   TIMELINE / HOW IT WORKS
   ========================================================================== */
.vis-timeline-section {
  padding: var(--vis-pad-scale) 2rem;
  background: var(--vis-deep-void);
}

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

.vis-timeline-track {
  position: absolute;
  left: 20px;
  top: 15px;
  bottom: 15px;
  width: 3px;
  background: linear-gradient(180deg, var(--vis-spectra-cyan), var(--vis-spectra-azure));
  box-shadow: 0 0 10px var(--vis-spectra-glow);
}

.vis-timeline-node {
  position: relative;
  padding-left: 5rem;
  margin-bottom: 4.5rem;
}

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

.vis-timeline-bullet {
  position: absolute;
  left: 1.5px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--vis-deep-void);
  border: 3px solid var(--vis-spectra-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vis-heading-font);
  font-weight: 900;
  color: var(--vis-spectra-cyan);
  box-shadow: 0 0 15px var(--vis-spectra-glow);
}

.vis-timeline-content {
  background: var(--vis-glass-base);
  border: 1px solid var(--vis-glass-border);
  padding: 2.2rem;
  border-radius: var(--vis-rounded-soft);
}

.vis-timeline-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.vis-timeline-desc {
  color: var(--vis-muted-cosmic);
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.vis-cta-band {
  padding: 6.5rem 2rem;
  background: linear-gradient(135deg, rgba(8, 12, 24, 0.95) 0%, rgba(13, 20, 38, 0.9) 100%);
  border-top: 1px solid var(--vis-glass-border);
  border-bottom: 1px solid var(--vis-glass-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vis-cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.vis-cta-grid {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   FORM & RESERVATION SPECIFICS
   ========================================================================== */
.vis-booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  max-width: 1240px;
  margin: 0 auto;
}

.vis-form-card {
  background: var(--vis-glass-base);
  border: 1px solid var(--vis-glass-border);
  border-radius: var(--vis-rounded-soft);
  padding: 3.5rem;
  box-shadow: var(--vis-shadow-deep);
}

.vis-input-group {
  margin-bottom: 2rem;
}

.vis-input-group label {
  display: block;
  font-family: var(--vis-heading-font);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--vis-spectra-cyan);
}

.vis-form-control {
  width: 100%;
  background: rgba(6, 9, 19, 0.6);
  border: 1px solid var(--vis-glass-border);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  font-family: var(--vis-body-font);
  color: var(--vis-neutral-white);
  transition: var(--vis-transition-smooth);
  font-size: 1rem;
}

.vis-form-control:focus {
  outline: none;
  border-color: var(--vis-spectra-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

textarea.vis-form-control {
  min-height: 140px;
  resize: vertical;
}

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

.vis-checkbox-group input {
  margin-top: 0.3rem;
  accent-color: var(--vis-spectra-cyan);
}

.vis-checkbox-group label {
  font-size: 0.9rem;
  color: var(--vis-muted-cosmic);
}

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

/* FAQ accordion styling */
.vis-faq-stack {
  margin-top: 5rem;
}

.vis-faq-block {
  background: var(--vis-glass-base);
  border: 1px solid var(--vis-glass-border);
  border-radius: var(--vis-rounded-soft);
  margin-bottom: 1.5rem;
  padding: 2rem;
}

.vis-faq-q {
  font-family: var(--vis-heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--vis-spectra-cyan);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vis-faq-q::before {
  content: '?';
  font-weight: 900;
  color: var(--vis-spectra-azure);
}

.vis-faq-a {
  color: var(--vis-muted-cosmic);
  font-size: 1.05rem;
}

/* ==========================================================================
   EXPERT AREA SPECIFICS
   ========================================================================== */
.vis-expert-image-masthead {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-expert-image-masthead img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.35);
}

.vis-expert-quote-over {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.vis-expert-quote-text {
  font-family: var(--vis-heading-font);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

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

.vis-stat-box {
  background: var(--vis-glass-base);
  border: 1px solid var(--vis-glass-border);
  padding: 3rem 2rem;
  border-radius: var(--vis-rounded-soft);
  text-align: center;
}

.vis-stat-box h3 {
  font-size: 3.5rem;
  color: var(--vis-spectra-cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px var(--vis-spectra-glow);
}

.vis-stat-box p {
  color: var(--vis-muted-cosmic);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CSS Only Accordion list for Expert approach */
.vis-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.vis-accordion-item {
  background: var(--vis-glass-base);
  border: 1px solid var(--vis-glass-border);
  border-radius: var(--vis-rounded-soft);
  padding: 2rem;
  position: relative;
}

.vis-accordion-item::before {
  content: attr(data-number);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--vis-heading-font);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 242, 254, 0.12);
  line-height: 1;
}

/* ==========================================================================
   COOKIE CONSENT DISPLAY
   ========================================================================== */
.vis-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(6, 9, 19, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--vis-glass-border);
  padding: 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
}

.vis-cookie-banner.vis-visible {
  transform: translateY(0);
}

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

.vis-cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.95rem;
  color: var(--vis-muted-cosmic);
}

.vis-cookie-text a {
  color: var(--vis-spectra-cyan);
  text-decoration: underline;
}

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

.vis-cookie-btn {
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-family: var(--vis-heading-font);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--vis-transition-smooth);
}

.vis-btn-allow {
  background: var(--vis-spectra-cyan);
  color: var(--vis-deep-void);
  border: none;
}

.vis-btn-allow:hover {
  background: var(--vis-spectra-azure);
  transform: translateY(-2px);
}

.vis-btn-deny {
  background: transparent;
  border: 1px solid var(--vis-muted-cosmic);
  color: var(--vis-muted-cosmic);
}

.vis-btn-deny:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--vis-neutral-white);
  color: var(--vis-neutral-white);
}

/* ==========================================================================
   FOOTER AREA
   ========================================================================== */
.vis-footer-area {
  background: #03060c;
  border-top: 1px solid var(--vis-glass-border);
  padding: 5rem 2rem 3rem 2rem;
}

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

.vis-footer-desc {
  color: var(--vis-muted-cosmic);
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.vis-footer-links-title {
  font-family: var(--vis-heading-font);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.vis-footer-link-group {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vis-footer-link-group a {
  color: var(--vis-muted-cosmic);
  font-size: 0.95rem;
}

.vis-footer-link-group a:hover {
  color: var(--vis-spectra-cyan);
  padding-left: 0.25rem;
}

.vis-footer-disclaimer-card {
  background: var(--vis-glass-base);
  border: 1px solid var(--vis-glass-border);
  padding: 2.5rem;
  border-radius: var(--vis-rounded-soft);
  max-width: 1200px;
  margin: 0 auto 3rem auto;
}

.vis-footer-disclaimer-card p {
  font-size: 0.85rem;
  color: var(--vis-muted-cosmic);
  line-height: 1.8;
  text-align: justify;
}

.vis-footer-copyright-row {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.vis-copyright-text {
  font-size: 0.9rem;
  color: var(--vis-muted-cosmic);
}

/* ==========================================================================
   VIEWPORT ENTRANCE ANIMATIONS (Scroll-driven / Viewport-driven)
   ========================================================================== */
.vis-fade-in-up {
  animation: vis-reveal-keyf linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 40%;
}

@keyframes vis-reveal-keyf {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 968px) {
  :root {
    --vis-pad-scale: 7dvh;
  }
  
  .vis-menu-btn-label {
    display: flex;
  }
  
  .vis-menu-links {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 9, 19, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: var(--vis-transition-smooth);
    z-index: 1000;
  }
  
  .vis-menu-trigger:checked ~ .vis-menu-links {
    top: 0;
  }

  .vis-menu-trigger:checked ~ .vis-menu-btn-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

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

  .vis-menu-trigger:checked ~ .vis-menu-btn-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .vis-content-layout {
    flex-direction: column;
  }
  
  .vis-content-column-img {
    height: 350px;
    min-height: auto;
  }
  
  .vis-content-column-img::after {
    background: linear-gradient(180deg, transparent 60%, var(--vis-deep-void) 100%);
  }
  
  .vis-content-column-text {
    padding: 4rem 2rem;
  }
  
  .vis-booking-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vis-form-card {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .vis-glass-panel {
    padding: 2rem 1.5rem;
  }
  
  .vis-card-glass {
    padding: 2rem 1.5rem;
  }
  
  .vis-timeline-node {
    padding-left: 3.5rem;
  }
  
  .vis-timeline-bullet {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}