/* --- DESIGN THEME: COLORFUL (BOLD ACCENT PRESET C) --- */
/* Font definitions integrated directly via standard font stacks */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Raleway:wght@700;800;900&display=swap');

:root {
  /* Dynamic custom topic-themed CSS variables */
  --focus-bg-canvas: #f6f8fa;
  --focus-bg-surface: #ffffff;
  --focus-brand-dominant: #1e3a8a; /* Deep trustworthy blue */
  --focus-brand-contrast: #ea580c; /* Vibrant orange for strong accents */
  --focus-brand-contrast-hover: #c2410c;
  --focus-brand-light: #eff6ff;
  --focus-ink-heavy: #0f172a;
  --focus-ink-muted: #475569;
  --focus-ink-inverted: #ffffff;
  --focus-accent-gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #ea580c 100%);
  --focus-shadow-raised: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --focus-border-soft: 16px;
  
  --font-display: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Poppins', 'Segoe UI', Roboto, sans-serif;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--focus-ink-heavy);
  background-color: var(--focus-bg-canvas);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

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

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

/* Scroll-Driven Progress Bar */
.focus-progress-line {
  height: 5px;
  width: 0;
  background: var(--focus-brand-contrast);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

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

/* Shell / Container substitute */
.focus-viewport-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER SECTION (Preset C: Bright accent-color background, white text) */
.focus-header-shield {
  background: var(--focus-brand-dominant);
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.focus-header-alignment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.focus-identity-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--focus-ink-inverted);
}

.focus-brand-vector {
  width: 36px;
  height: 36px;
  color: var(--focus-brand-contrast);
}

.focus-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.focus-navigation-bundle {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.focus-navigation-item {
  color: var(--focus-ink-inverted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.focus-navigation-item:hover,
.focus-navigation-item.active {
  color: var(--focus-brand-contrast);
  border-bottom-color: var(--focus-brand-contrast);
}

/* Mobile Hamburger Style CSS only */
.focus-hamburger-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.focus-bar-line {
  width: 25px;
  height: 3px;
  background-color: var(--focus-ink-inverted);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* HERO SECTION (Preset C: Fullscreen gradient, absolute numeric, abstract shapes) */
.focus-epicenter-block {
  position: relative;
  min-height: 90vh;
  background: var(--focus-accent-gradient);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0;
}

.focus-epicenter-compact {
  min-height: 50vh;
}

.focus-huge-background-digit {
  position: absolute;
  font-size: 24rem;
  font-weight: 950;
  font-family: var(--font-display);
  color: var(--focus-ink-inverted);
  opacity: 0.06;
  bottom: -40px;
  right: -20px;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.focus-abstract-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.25;
}

.focus-blob-one {
  width: 400px;
  height: 400px;
  background-color: var(--focus-brand-contrast);
  top: -100px;
  right: -100px;
}

.focus-blob-two {
  width: 300px;
  height: 300px;
  background-color: #3b82f6;
  bottom: -50px;
  left: -50px;
}

.focus-epicenter-inner {
  position: relative;
  z-index: 2;
}

.focus-epicenter-text-group {
  max-width: 750px;
}

.focus-epicenter-title {
  font-size: 3.5rem;
  color: var(--focus-ink-inverted);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.focus-epicenter-description {
  color: var(--focus-brand-light);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Button & Interactive styles */
.focus-interactive-trigger {
  display: inline-block;
  background-color: var(--focus-brand-contrast);
  color: var(--focus-ink-inverted);
  padding: 1rem 2.5rem;
  font-weight: bold;
  font-family: var(--font-display);
  border-radius: var(--focus-border-soft);
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.35);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.focus-interactive-trigger:hover {
  background-color: var(--focus-brand-contrast-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
}

.focus-trigger-solid {
  background-color: var(--focus-brand-contrast);
}

.focus-full-width {
  width: 100%;
}

/* DIAGONAL SHOWCASE SECTION (Preset C: clip-path polygon diagonal edges) */
.focus-diagonal-showcase {
  position: relative;
  padding: 12dvh 0;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--focus-ink-inverted);
}

.focus-diagonal-inner-shield {
  background-color: rgba(15, 23, 42, 0.85);
  padding: 3.5rem;
  border-radius: var(--focus-border-soft);
  backdrop-filter: blur(10px);
  max-width: 850px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--focus-shadow-raised);
}

.focus-diagonal-heading {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--focus-brand-contrast);
}

.focus-diagonal-paragraph {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.95;
}

.focus-diagonal-paragraph:last-of-type {
  margin-bottom: 0;
}

/* FEATURES SECTION (Preset C: 3/4-Column Grid with huge numbers) */
.focus-advantage-matrix {
  padding: 10dvh 0;
}

.focus-section-main-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--focus-brand-dominant);
  position: relative;
}

.focus-section-main-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--focus-brand-contrast);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.focus-advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.focus-benefit-tile {
  background-color: var(--focus-bg-surface);
  padding: 2.5rem;
  border-radius: var(--focus-border-soft);
  box-shadow: var(--focus-shadow-raised);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.focus-benefit-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.1);
}

.focus-benefit-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--focus-accent-gradient);
}

.focus-benefit-order {
  font-size: 3.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--focus-brand-contrast);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 1rem;
}

.focus-benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--focus-brand-dominant);
}

.focus-benefit-text {
  color: var(--focus-ink-muted);
  font-size: 0.95rem;
}

/* HOW IT WORKS: STEPPER SECTION (Preset C: horizontal line with steps) */
.focus-stepper-landscape {
  padding: 10dvh 0;
  background-color: var(--focus-brand-light);
  overflow: hidden;
}

.focus-stepper-connector-line {
  width: 100%;
  max-width: 800px;
  height: 4px;
  background-color: var(--focus-brand-dominant);
  margin: 0 auto;
  position: relative;
  top: 35px;
  z-index: 1;
}

.focus-stepper-track {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 2rem;
}

.focus-step-element {
  flex: 1;
  text-align: center;
}

.focus-step-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid var(--focus-brand-dominant);
  background-color: var(--focus-bg-surface);
  color: var(--focus-brand-dominant);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.focus-badge-filled {
  background-color: var(--focus-brand-dominant);
  color: var(--focus-ink-inverted);
}

.focus-step-name {
  font-size: 1.15rem;
  color: var(--focus-brand-dominant);
  margin-bottom: 0.5rem;
}

.focus-step-explanation {
  color: var(--focus-ink-muted);
  font-size: 0.9rem;
  padding: 0 1rem;
}

/* CTA STRIP SECTION (Preset C: Dark bg, text left, pill button right) */
.focus-action-banner {
  background-size: cover;
  background-position: center;
  padding: 8dvh 0;
  color: var(--focus-ink-inverted);
}

.focus-action-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.focus-action-banner-heading {
  font-size: 2.5rem;
  max-width: 700px;
}

/* NARRATIVE SPLIT SYSTEM (expert.html) */
.focus-split-narrative {
  padding: 10dvh 0;
}

.focus-split-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3.5rem;
  align-items: center;
}

.focus-split-text-frame {
  padding-right: 1.5rem;
}

.focus-split-title {
  font-size: 2.5rem;
  color: var(--focus-brand-dominant);
  margin-bottom: 2rem;
}

.focus-split-description {
  margin-bottom: 1.5rem;
  color: var(--focus-ink-muted);
  font-size: 1.05rem;
}

.focus-split-visual-frame {
  position: relative;
}

.focus-split-image {
  border-radius: var(--focus-border-soft);
  box-shadow: var(--focus-shadow-raised);
  object-fit: cover;
  width: 100%;
  height: 420px;
}

/* DATA STATS STRIP */
.focus-data-strip {
  background: var(--focus-brand-dominant);
  padding: 6rem 0;
  color: var(--focus-ink-inverted);
}

.focus-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.focus-data-item {
  display: flex;
  flex-direction: column;
}

.focus-data-numeric {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--focus-brand-contrast);
}

.focus-data-label {
  font-size: 1rem;
  color: var(--focus-brand-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* RESERVATION PAGE (Preset C Layout: 2-Columns layout) */
.focus-split-booking-layout {
  padding: 8dvh 0;
}

.focus-booking-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 4rem;
  align-items: start;
}

.focus-booking-main-title {
  font-size: 2.5rem;
  color: var(--focus-brand-dominant);
  margin-bottom: 1rem;
}

.focus-booking-lead-text {
  color: var(--focus-ink-muted);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* Interative Form CSS */
.focus-interactive-form {
  background-color: var(--focus-bg-surface);
  border-radius: var(--focus-border-soft);
  padding: 3rem;
  box-shadow: var(--focus-shadow-raised);
  border: 1px solid rgba(30, 58, 138, 0.05);
}

.focus-field-group {
  margin-bottom: 1.5rem;
}

.focus-input-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--focus-brand-dominant);
  font-size: 0.9rem;
}

.focus-text-input,
.focus-textarea-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--focus-border-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s ease;
  background-color: #f8fafc;
}

.focus-textarea-input {
  resize: vertical;
  min-height: 110px;
}

.focus-text-input:focus,
.focus-textarea-input:focus {
  outline: none;
  border-color: var(--focus-brand-dominant);
  background-color: var(--focus-bg-surface);
}

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

.focus-checkbox-control {
  margin-top: 0.3rem;
  accent-color: var(--focus-brand-contrast);
}

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

.focus-checkbox-label a {
  color: var(--focus-brand-contrast);
  text-decoration: underline;
}

/* Sidebar cards booking.html */
.focus-booking-sidebar-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.focus-sidebar-card {
  background-color: var(--focus-bg-surface);
  padding: 2.5rem;
  border-radius: var(--focus-border-soft);
  box-shadow: var(--focus-shadow-raised);
}

.focus-sidebar-accent-card {
  background: var(--focus-accent-gradient);
  color: var(--focus-ink-inverted);
}

.focus-sidebar-accent-card .focus-sidebar-card-title {
  color: var(--focus-ink-inverted);
}

.focus-sidebar-card-title {
  font-size: 1.25rem;
  color: var(--focus-brand-dominant);
  margin-bottom: 1.5rem;
}

.focus-sidebar-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.focus-sidebar-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.focus-list-marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--focus-brand-light);
  color: var(--focus-brand-dominant);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* FAQ PANEL DESIGN */
.focus-faq-section {
  padding: 10dvh 0;
  background-color: var(--focus-bg-surface);
}

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

.focus-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.5rem;
}

.focus-faq-question {
  font-size: 1.15rem;
  color: var(--focus-brand-dominant);
  margin-bottom: 0.75rem;
}

.focus-faq-answer {
  color: var(--focus-ink-muted);
}

/* DOCUMENT DETAIL CONTAINER (privacy-policy.html / terms-of-service.html) */
.focus-document-container {
  padding: 8dvh 0;
  background-color: var(--focus-bg-surface);
  min-height: 100vh;
}

.focus-document-title {
  font-size: 3rem;
  color: var(--focus-brand-dominant);
  margin-bottom: 0.5rem;
}

.focus-document-lead {
  font-size: 1.1rem;
  color: var(--focus-ink-muted);
  margin-bottom: 3.5rem;
}

.focus-document-section {
  margin-bottom: 3rem;
}

.focus-document-subtitle {
  font-size: 1.5rem;
  color: var(--focus-brand-dominant);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.focus-document-section p {
  color: var(--focus-ink-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* FOOTER SECTION (Shared across all pages) */
.focus-footer-shield {
  background-color: var(--focus-ink-heavy);
  color: var(--focus-ink-inverted);
  padding: 6rem 0 3rem;
  border-top: 5px solid var(--focus-brand-contrast);
}

.focus-footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.focus-footer-links {
  display: flex;
  gap: 2rem;
}

.focus-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.focus-footer-links a:hover {
  color: var(--focus-brand-contrast);
}

.focus-footer-disclaimer {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3rem;
  border-left: 3px solid var(--focus-brand-contrast);
  padding-left: 1.5rem;
}

.focus-footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* COOKIE CONSENT BANNER SYSTEM */
.focus-cookie-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--focus-ink-heavy);
  color: var(--focus-ink-inverted);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  border-top: 3px solid var(--focus-brand-contrast);
}

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

.focus-cookie-text {
  font-size: 0.9rem;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.9);
}

.focus-cookie-buttons-holder {
  display: flex;
  gap: 1rem;
}

.focus-cookie-btn {
  padding: 0.6rem 1.75rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.focus-cookie-accept {
  background-color: var(--focus-brand-contrast);
  color: var(--focus-ink-inverted);
}

.focus-cookie-accept:hover {
  background-color: var(--focus-brand-contrast-hover);
}

.focus-cookie-decline {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--focus-ink-inverted);
}

.focus-cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Scroll reveals (CSS only viewport transitions) */
.focus-reveal-section {
  animation: scroll-reveal-animation linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

@keyframes scroll-reveal-animation {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MEDIA QUERIES (Pure adaptive desktop to mobile) */
@media (max-width: 991px) {
  .focus-split-grid {
    grid-template-columns: 100%;
    gap: 2.5rem;
  }
  .focus-split-image {
    height: 300px;
  }
  .focus-booking-grid {
    grid-template-columns: 100%;
    gap: 3rem;
  }
  .focus-action-split {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .focus-epicenter-title {
    font-size: 2.5rem;
  }
  .focus-stepper-connector-line {
    display: none;
  }
  .focus-stepper-track {
    flex-direction: column;
    gap: 3rem;
  }
  .focus-diagonal-showcase {
    clip-path: none;
    padding: 6dvh 0;
  }
  .focus-section-main-heading {
    font-size: 2rem;
  }
  .focus-huge-background-digit {
    font-size: 12rem;
  }

  /* Hamburger Menu Activation */
  .focus-hamburger-button {
    display: flex;
  }

  .focus-navigation-bundle {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--focus-brand-dominant);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    transition: all 0.4s ease-in-out;
  }

  .focus-menu-checkbox:checked ~ .focus-navigation-bundle {
    left: 0;
  }

  .focus-menu-checkbox:checked ~ .focus-hamburger-button .focus-bar-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .focus-menu-checkbox:checked ~ .focus-hamburger-button .focus-bar-line:nth-child(2) {
    opacity: 0;
  }

  .focus-menu-checkbox:checked ~ .focus-hamburger-button .focus-bar-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}