/* Custom CSS Variables - Sight Thematic Names (Avoiding primary/secondary words) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Poppins:wght@400;500;600&display=swap');

:root {
  /* Color Palette - Colorful and high contrast WCAG AA */
  --sight-primary-hue: #1e3a8a;        /* Deep ocean dark blue */
  --sight-secondary-hue: #0d9488;      /* Vibrant teal */
  --sight-accent-hue: #f97316;         /* Energetic warning orange */
  --sight-dark-hue: #0f172a;           /* Velvet slate dark text */
  --sight-light-hue: #f8fafc;          /* High-contrast off-white cream */
  --sight-surface-hue: #ffffff;        /* Pure white */
  --sight-slate-hue: #475569;          /* Readable grey body */
  
  /* Gradients */
  --sight-gradient-ocean: linear-gradient(135deg, #1e3a8a 0%, #0d9488 100%);
  --sight-gradient-sunset: linear-gradient(135deg, #f97316 0%, #7c3aed 100%);
  
  /* Typography */
  --sight-font-display: 'Montserrat', sans-serif;
  --sight-font-body: 'Poppins', sans-serif;
  
  /* Borders and Shadows */
  --sight-radius-soft: 20px;
  --sight-radius-pill: 999px;
  --sight-shadow-deep: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sight-font-body);
  background-color: var(--sight-light-hue);
  color: var(--sight-dark-hue);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scroll Progress Bar Under Header (CSS Only Scroll Drive) */
@keyframes sight-progress-grow { 
  to { width: 100%; } 
}

.sight-scroll-progress-indicator { 
  height: 4px; 
  width: 0; 
  background: var(--sight-gradient-sunset); 
  animation: sight-progress-grow linear; 
  animation-timeline: scroll(); 
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Main Container Holder */
.sight-holder-main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.sight-top-header {
  background-color: var(--sight-surface-hue);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  height: 80px;
}

.sight-flex-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.sight-brand-identity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--sight-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--sight-primary-hue);
}

.sight-brand-identity svg {
  width: 32px;
  height: 32px;
  color: var(--sight-secondary-hue);
}

.sight-header-ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.sight-header-anchor {
  text-decoration: none;
  font-family: var(--sight-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sight-slate-hue);
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.sight-header-anchor:hover, 
.sight-header-anchor.active {
  color: var(--sight-primary-hue);
}

.sight-header-anchor.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--sight-gradient-ocean);
  border-radius: var(--sight-radius-pill);
}

/* Mobile Hamburger Menu Trick */
.sight-checkbox-hidden {
  display: none;
}

.sight-hamburger-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.sight-hamburger-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--sight-dark-hue);
  transition: all 0.3s ease;
}

/* Hero Section (Leader Billboard) */
.sight-leader-billboard {
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.sight-billboard-content {
  max-width: 700px;
  color: var(--sight-surface-hue);
}

.sight-main-caption {
  font-family: var(--sight-font-display);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.sight-paragraph-featured {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

/* Interactive Trigger Links / Buttons */
.sight-interactive-trigger {
  display: inline-block;
  text-decoration: none;
  font-family: var(--sight-font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--sight-surface-hue);
  background: var(--sight-gradient-sunset);
  padding: 1rem 2.5rem;
  border-radius: var(--sight-radius-pill);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sight-interactive-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(124, 58, 237, 0.3);
}

.sight-trigger-light {
  background: var(--sight-surface-hue);
  color: var(--sight-primary-hue);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sight-trigger-light:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Bento Showcase Mosaic & Scroll driven entry */
.sight-segment-node {
  padding: 6rem 0;
}

.sight-secondary-heading {
  font-family: var(--sight-font-display);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--sight-primary-hue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.sight-tertiary-heading {
  font-family: var(--sight-font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--sight-dark-hue);
  margin-bottom: 0.75rem;
}

.sight-paragraph-base {
  color: var(--sight-slate-hue);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.sight-align-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

/* Scroll Animation */
@keyframes sight-fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.sight-revealable {
  animation: sight-fade-up 0.6s linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 40%;
}

/* Bento Grid */
.sight-showcase-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.sight-mosaic-brick-large {
  grid-column: span 4;
  background: var(--sight-gradient-ocean);
  color: var(--sight-surface-hue);
  border-radius: var(--sight-radius-soft);
  padding: 3rem;
  box-shadow: var(--sight-shadow-deep);
  transition: transform 0.3s ease;
}

.sight-mosaic-brick-large .sight-tertiary-heading {
  color: var(--sight-surface-hue);
  font-size: 1.75rem;
}

.sight-mosaic-brick-large .sight-paragraph-base {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.sight-mosaic-brick-narrow {
  grid-column: span 2;
  background: var(--sight-gradient-sunset);
  color: var(--sight-surface-hue);
  border-radius: var(--sight-radius-soft);
  padding: 3rem;
  box-shadow: var(--sight-shadow-deep);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sight-stat-large {
  font-family: var(--sight-font-display);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
}

.sight-paragraph-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.sight-mosaic-brick-medium {
  grid-column: span 3;
  background-color: var(--sight-surface-hue);
  border-radius: var(--sight-radius-soft);
  padding: 2.5rem;
  box-shadow: var(--sight-shadow-deep);
  transition: transform 0.3s ease;
}

.sight-mosaic-brick-full {
  grid-column: span 6;
  background-color: var(--sight-surface-hue);
  border-radius: var(--sight-radius-soft);
  padding: 2.5rem;
  box-shadow: var(--sight-shadow-deep);
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: transform 0.3s ease;
}

.sight-mosaic-brick-full .sight-paragraph-base {
  margin-bottom: 0;
}

.sight-mosaic-brick-large:hover,
.sight-mosaic-brick-narrow:hover,
.sight-mosaic-brick-medium:hover,
.sight-mosaic-brick-full:hover {
  transform: translateY(-5px);
}

.sight-accent-badge {
  display: inline-block;
  background-color: var(--sight-accent-hue);
  color: var(--sight-surface-hue);
  font-family: var(--sight-font-display);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--sight-radius-pill);
  margin-bottom: 1.5rem;
}

.sight-icon-holder {
  width: 50px;
  height: 50px;
  color: var(--sight-secondary-hue);
  margin-bottom: 1.5rem;
}

.sight-icon-holder-large {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  color: var(--sight-accent-hue);
}

/* Split Section Overlay */
.sight-content-overlap-box {
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  position: relative;
}

.sight-overlap-text {
  max-width: 650px;
  color: var(--sight-surface-hue);
}

.sight-overlap-text .sight-secondary-heading {
  color: var(--sight-surface-hue);
}

/* Horizontal Steps Process */
.sight-steps-flow {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
}

.sight-step-node {
  flex: 1;
  background-color: var(--sight-surface-hue);
  border-radius: var(--sight-radius-soft);
  padding: 2.5rem;
  box-shadow: var(--sight-shadow-deep);
  position: relative;
}

.sight-step-number {
  font-family: var(--sight-font-display);
  font-weight: 800;
  font-size: 5rem;
  line-height: 1;
  color: var(--sight-primary-hue);
  opacity: 0.08;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Sunset Accent Stripe */
.sight-accent-stripe {
  background: var(--sight-gradient-sunset);
  padding: 5rem 0;
  color: var(--sight-surface-hue);
}

.sight-flex-stripe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

/* Reserve / FAQ Section & Details */
.sight-bullets-inside {
  list-style: none;
  margin-top: 1rem;
}

.sight-bullets-inside li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--sight-slate-hue);
}

.sight-bullets-inside li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--sight-accent-hue);
  flex-shrink: 0;
}

/* Accordion FAQ */
.sight-accordion-holder {
  max-width: 800px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sight-accordion-item {
  background-color: var(--sight-surface-hue);
  border-radius: var(--sight-radius-soft);
  padding: 2rem;
  box-shadow: var(--sight-shadow-deep);
}

.sight-accordion-header {
  font-family: var(--sight-font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--sight-primary-hue);
  margin-bottom: 1rem;
}

.sight-accordion-body .sight-paragraph-base {
  margin-bottom: 0;
}

/* Booking Form Elements */
.sight-form-holder {
  max-width: 600px;
  margin: 0 auto;
  background: var(--sight-surface-hue);
  border-radius: var(--sight-radius-soft);
  padding: 3.5rem;
  box-shadow: var(--sight-shadow-deep);
}

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

.sight-form-label {
  display: block;
  font-family: var(--sight-font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--sight-primary-hue);
}

.sight-input-element {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-family: var(--sight-font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.sight-input-element:focus {
  border-color: var(--sight-secondary-hue);
}

.sight-checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.sight-checkbox-group input {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.sight-form-consent-label {
  font-size: 0.85rem;
  color: var(--sight-slate-hue);
}

.sight-form-consent-label a {
  color: var(--sight-primary-hue);
  font-weight: 600;
}

/* Expert Page Specifics */
.sight-flex-split {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.sight-flex-split > * {
  flex: 1;
}

/* Footer styling */
.sight-footer-base {
  background-color: var(--sight-dark-hue);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 3rem;
}

.sight-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.sight-bullets-alternative {
  list-style: none;
}

.sight-bullets-alternative li {
  margin-bottom: 0.75rem;
}

.sight-footer-anchor {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.sight-footer-anchor:hover {
  color: var(--sight-accent-hue);
}

.sight-divider-line {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.sight-disclaimer-text {
  font-size: 0.8rem;
  color: var(--sight-slate-hue);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.sight-copyright-text {
  font-size: 0.85rem;
  color: var(--sight-slate-hue);
}

/* Custom cookie banner */
.sight-cookie-popup {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 500px;
  background-color: var(--sight-surface-hue);
  border-radius: var(--sight-radius-soft);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  z-index: 9999;
}

.sight-cookie-container {
  display: flex;
  flex-direction: column;
}

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

.sight-cookie-btn {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--sight-radius-pill);
  font-family: var(--sight-font-display);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sight-cookie-btn-accept {
  background-color: var(--sight-secondary-hue);
  color: var(--sight-surface-hue);
}

.sight-cookie-btn-accept:hover {
  background-color: #0b7a70;
}

.sight-cookie-btn-decline {
  background-color: var(--sight-light-hue);
  color: var(--sight-dark-hue);
}

.sight-cookie-btn-decline:hover {
  background-color: #cbd5e1;
}

/* Adaptive Responsiveness overrides */
@media (max-width: 1024px) {
  .sight-main-caption {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .sight-hamburger-icon {
    display: flex;
  }

  .sight-header-anchors {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--sight-surface-hue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
  }

  .sight-header-ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .sight-checkbox-hidden:checked ~ .sight-header-anchors {
    display: block;
  }

  .sight-leader-billboard {
    padding: 5rem 0;
  }

  .sight-main-caption {
    font-size: 2rem;
  }

  .sight-showcase-mosaic {
    grid-template-columns: 1fr;
  }

  .sight-mosaic-brick-large,
  .sight-mosaic-brick-narrow,
  .sight-mosaic-brick-medium,
  .sight-mosaic-brick-full {
    grid-column: span 6;
  }

  .sight-mosaic-brick-full {
    flex-direction: column;
    align-items: flex-start;
  }

  .sight-steps-flow {
    flex-direction: column;
  }

  .sight-flex-stripe {
    flex-direction: column;
    text-align: center;
  }

  .sight-flex-split {
    flex-direction: column;
    gap: 2.5rem;
  }

  .sight-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sight-form-holder {
    padding: 2rem;
  }
}