/* 
   ZEY - Find Your Kind of Luxury
   Premium CSS Stylesheet
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700&display=swap');

/* Color Variables & Reset */
:root {
  /* Brand Palette */
  --bg-color: #FAF8F5;
  --bg-darker: #F3EFE9;
  --bg-card: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5752;
  --text-muted: #8E8A82;
  --gold-primary: #B4976C;
  --gold-light: #C5A880;
  --gold-dark: #8F7249;
  --olive-green: #2C3E2B;
  --teal-blue: #284C49;
  --white: #FFFFFF;
  --border-color: rgba(180, 151, 108, 0.2);
  --border-dark: rgba(180, 151, 108, 0.4);

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease-out;

  /* Container */
  --container-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-color);
}

/* Custom Selection */
::selection {
  background-color: var(--gold-light);
  color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* Luxury Custom Cursor Disable native on desktop, keep native on mobile */
html, body, a, button, input, select, textarea, .quiz-option, .hotel-tab, [role="button"] {
  cursor: none !important;
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  html, body, a, button, input, select, textarea, .quiz-option, .hotel-tab, [role="button"] {
    cursor: auto !important;
  }
  .custom-cursor {
    display: none !important;
  }
}

.custom-cursor {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  will-change: transform;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.45));
  transition: transform 0.1s ease-out;
}

.custom-cursor-dot {
  display: none; /* Removed as requested */
}

.custom-cursor.cursor-hover svg,
.custom-cursor.cursor-hover img {
  animation: slowRotate 10s linear infinite;
}

/* Color inversion for custom cursor on dark buttons */
.custom-cursor.cursor-light svg circle {
  stroke: var(--white) !important;
}

.custom-cursor.cursor-light svg polygon {
  fill: var(--white) !important;
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.serif-italic {
  font-style: italic;
  font-family: var(--font-serif);
}

.tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--olive-green);
  color: var(--bg-color);
  border: 1px solid var(--olive-green);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.6s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(180, 151, 108, 0.15);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-dark);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background-color: var(--text-primary);
  color: var(--bg-color);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold-primary);
  color: var(--white);
  border: 1px solid var(--gold-primary);
}

.btn-gold:hover {
  background-color: var(--olive-green);
  border-color: var(--olive-green);
  transform: translateY(-2px);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* --- HEADER SECTION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  background-color: rgba(250, 248, 245, 0.95);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: var(--transition-smooth);
}

header.scrolled .container {
  height: 70px;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  margin-right: 0.8rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  font-weight: 500;
}

/* Navigation Links */
nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  font-family: var(--font-sans);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-primary);
  transition: var(--transition-smooth);
}

nav a:hover {
  color: var(--gold-primary);
}

nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-color: var(--bg-darker);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  z-index: 2;
}

.hero h1 {
  font-size: 4.2rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.hero h1 span.highlight {
  font-style: italic;
  color: var(--gold-primary);
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image-frame {
  width: 90%;
  height: 100%;
  border-top-left-radius: 250px;
  border-top-right-radius: 250px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.05);
}

.hero-floating-badge {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-primary);
  padding: 1.8rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  max-width: 250px;
  animation: float 4s ease-in-out infinite;
}

.hero-floating-badge h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.hero-floating-badge p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.scroll-down span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
}

.scroll-down-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold-primary) 50%, transparent 50%);
  background-size: 100% 200%;
  animation: scrollLine 2s infinite linear;
}

@keyframes scrollLine {
  0% { background-position: 0 100%; }
  100% { background-position: 0 -100%; }
}

/* --- SECTION DECORATION & GENERAL --- */
section {
  padding: 8rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-darker);
}

.section-header {
  max-width: 700px;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* --- PHILOSOPHY GRID SECTION --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.philosophy-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3.5rem 2.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(180, 151, 108, 0.08);
  border-color: var(--gold-primary);
}

.philosophy-card-icon {
  margin-bottom: 2rem;
  color: var(--gold-primary);
}

.philosophy-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.philosophy-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* --- COMPARISON SLIDER SECTION --- */
.slider-container-box {
  margin-top: 2rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  padding: 3rem;
  border-radius: 24px;
}

.comparison-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

/* Split Image Columns */
.comparison-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.image-left {
  background-image: url('assets/vibrant.png');
  z-index: 1;
}

.image-right {
  background-image: url('assets/quiet.png');
  z-index: 2;
  /* Right image starts clipped */
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

/* Arch mask overlays to match mockup */
.arch-overlay-left, .arch-overlay-right {
  position: absolute;
  top: 40px;
  bottom: 40px;
  width: calc(50% - 60px);
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.arch-overlay-left {
  left: 40px;
}

.arch-overlay-right {
  right: 40px;
}

.arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-slider-ui {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.slider-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #eee;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-img-right-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  will-change: clip-path;
  clip-path: inset(0 0 0 50%);
}

.slider-img-right {
  width: 100%;
}

.slider-range-input {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 30;
  cursor: none;
}

/* Hide default HTML5 range thumb to show our custom styled .slider-handle */
.slider-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 54px;
  height: 54px;
  background: transparent;
  border: none;
  cursor: none;
}

.slider-range-input::-moz-range-thumb {
  width: 54px;
  height: 54px;
  background: transparent;
  border: none;
  cursor: none;
}

/* Slider Bar Line */
.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background-color: var(--gold-primary);
  z-index: 20;
  pointer-events: none;
  will-change: transform;
}

/* Slider Custom Handle button with Not Equal sign '≠' */
.slider-handle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0) translate(-50%, 0);
  width: 54px;
  height: 54px;
  background-color: var(--white);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 21;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--gold-primary);
  font-weight: 300;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.slider-handle svg {
  transition: transform 0.2s ease;
}

.slider-range-input:hover ~ .slider-handle {
  background-color: var(--bg-darker);
  border-color: var(--gold-primary);
}

.slider-range-input:hover ~ .slider-handle svg {
  transform: scale(1.15);
}

/* Slider Labels */
.slider-label {
  position: absolute;
  bottom: 30px;
  color: var(--white);
  padding: 0.8rem 1.5rem;
  background-color: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  border: 1px solid var(--border-color);
  z-index: 25;
  pointer-events: none;
}

.label-left {
  left: 30px;
}

.label-right {
  right: 30px;
}

/* Premium Blur Overlay Effects on Images */
.slider-img {
  transition: filter 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-img.is-blurred {
  filter: blur(12px) brightness(0.4);
}

/* Premium Slide Overlay Cards */
.slider-overlay-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  width: 85%;
  max-width: 480px;
  background: rgba(18, 19, 15, 0.88); /* ZEY deep luxury dark background */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(217, 189, 136, 0.35); /* ZEY gold border */
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  z-index: 28;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.slider-overlay-card.active {
  opacity: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.slider-overlay-card .overlay-tagline {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 0.8rem;
}

.slider-overlay-card h3 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff8ea;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.slider-overlay-card p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(248, 241, 230, 0.78);
  font-weight: 300;
}

/* Slider Details Text Block */
.slider-text-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  position: relative;
}

.slider-text-box {
  padding: 2rem;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  background-color: var(--bg-color);
}

.slider-text-box.active {
  border-color: var(--gold-primary);
  background-color: var(--white);
  box-shadow: 0 15px 30px rgba(180, 151, 108, 0.05);
}

.slider-text-box h4 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.slider-text-box h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--gold-primary);
  border-radius: 50%;
}

.slider-text-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --- THE VIBE MATCHER QUIZ SECTION --- */
.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 60px rgba(180, 151, 108, 0.08);
  padding: 4.5rem;
  position: relative;
  overflow: hidden;
}

/* Linen texture overlay */
.quiz-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.015;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.quiz-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--gold-primary);
  width: 0%;
  transition: width 0.4s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.6s ease-out;
}

.quiz-step-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.quiz-step-number {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
}

.quiz-step-header h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.quiz-option {
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.quiz-option:hover {
  border-color: var(--gold-primary);
  background-color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(180, 151, 108, 0.05);
}

.quiz-option.selected {
  border-color: var(--gold-primary);
  background-color: var(--white);
  box-shadow: 0 15px 35px rgba(180, 151, 108, 0.1);
}

.quiz-option.selected::before {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 10px;
  height: 10px;
  background-color: var(--gold-primary);
  border-radius: 50%;
}

.quiz-option-icon {
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
  font-size: 1.8rem;
}

.quiz-option-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.quiz-option-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.quiz-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Loading/Result Transition */
.quiz-loading {
  display: none;
  text-align: center;
  padding: 4rem 0;
}

.quiz-loading-spinner {
  width: 50px;
  height: 50px;
  border: 2px solid var(--border-color);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  margin: 0 auto 2rem;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.quiz-loading-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  font-style: italic;
}

.quiz-result {
  display: none;
  animation: fadeIn 0.8s ease-out;
}

.quiz-result-header {
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.quiz-result-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.quiz-result-image {
  width: 100%;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.quiz-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz-result-content h3 {
  font-size: 2.8rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.quiz-result-content p.description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.quiz-result-metrics {
  margin-bottom: 2.5rem;
}

.quiz-result-metric-item {
  margin-bottom: 1rem;
}

.quiz-result-metric-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.quiz-result-metric-bar {
  width: 100%;
  height: 4px;
  background-color: var(--bg-darker);
  position: relative;
}

.quiz-result-metric-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--gold-primary);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- 7-PARAMETER METRICS SHOWCASE --- */
.showcase-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.showcase-visual {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 4rem;
  box-shadow: 0 20px 40px rgba(180, 151, 108, 0.04);
}

.hotel-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.hotel-selector::-webkit-scrollbar {
  display: none;
}

.hotel-tab {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.hotel-tab.active {
  color: var(--gold-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--gold-primary);
}

.hotel-info-block {
  margin-bottom: 3rem;
}

.hotel-name {
  font-size: 2.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.hotel-location {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
}

/* 7 Metrics Styling */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.metric-row {
  display: grid;
  grid-template-columns: 180px 1fr 50px;
  align-items: center;
  gap: 1.5rem;
}

.metric-name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  font-weight: 500;
}

.metric-gauge-wrapper {
  width: 100%;
  height: 6px;
  background-color: var(--bg-darker);
  position: relative;
}

.metric-gauge-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-primary));
  width: 0%;
  transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: right;
}

/* Info side */
.showcase-info h3 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.showcase-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.metric-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.metric-info-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: var(--bg-darker);
}

.metric-info-card-icon {
  color: var(--gold-primary);
  font-size: 1.4rem;
  margin-top: 0.2rem;
}

.metric-info-card h5 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.metric-info-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

/* --- CONSULTATION BOOKING FORM --- */
.booking-section {
  position: relative;
  background-color: var(--bg-darker);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.booking-text h3 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.8rem;
}

.booking-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.booking-steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-step-item {
  display: flex;
  gap: 1.5rem;
}

.booking-step-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-primary);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.booking-step-desc h5 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.booking-step-desc p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

/* Luxury Form */
.booking-form-box {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 4rem 3.5rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

.booking-form-box h4 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.8rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  padding: 0.8rem 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-bottom-color: var(--text-primary);
}

textarea.form-control {
  min-height: 100px;
  resize: none;
}

.form-checkbox-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox-label input {
  accent-color: var(--gold-primary);
}

/* Form Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-modal {
  background-color: var(--white);
  border: 1px solid var(--gold-primary);
  width: 90%;
  max-width: 480px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .success-modal {
  transform: translateY(0);
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon {
  font-size: 2.2rem;
  color: var(--gold-primary);
}

.success-modal h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-modal p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* --- FOOTER --- */
footer {
  background-color: #151515;
  color: #8E8A82;
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(180, 151, 108, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand h4 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  color: #8E8A82;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--gold-primary);
}

.footer-links-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 1.8rem;
  font-weight: 600;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col ul li {
  margin-bottom: 1rem;
}

.footer-links-col ul li a {
  text-decoration: none;
  color: #8E8A82;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-links-col ul li a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

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

.footer-bottom-links a {
  color: #8E8A82;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

/* --- PLATFORM REDESIGN: ZEY LUXURY INTELLIGENCE --- */
body:has(.hero) {
  background: #0c0c0b;
}

body:has(.hero)::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(180, 151, 108, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 151, 108, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0, transparent 82%);
}

body:has(.hero) main,
body:has(.hero) header,
body:has(.hero) footer {
  position: relative;
  z-index: 1;
}

body:has(.hero) header {
  background-color: rgba(10, 10, 9, 0.72);
  border-bottom-color: rgba(197, 168, 128, 0.16);
}

body:has(.hero) header.scrolled {
  background-color: rgba(10, 10, 9, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

body:has(.hero) .logo-text,
body:has(.hero) nav a,
body:has(.hero) .btn-outline {
  color: #f8f1e6;
}

body:has(.hero) .mobile-menu-btn span {
  background-color: #f8f1e6;
}

body:has(.hero) .hero {
  min-height: 100vh;
  padding-top: 112px;
  padding-bottom: 4rem;
  color: #f8f1e6;
  background:
    radial-gradient(circle at 12% 18%, rgba(180, 151, 108, 0.18), transparent 28%),
    linear-gradient(135deg, #0a0a09, #171a13 55%, #0a0a09);
}

body:has(.hero) .hero::before {
  display: block;
  right: auto;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.96) 0 38%, rgba(10, 10, 9, 0.42) 56%, rgba(10, 10, 9, 0.74) 100%),
    url('assets/d_maris.png') center / cover no-repeat;
  opacity: 0.54;
}

body:has(.hero) .hero .container {
  position: relative;
  z-index: 2;
}

body:has(.hero) .hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 4rem;
}

body:has(.hero) .hero-content {
  padding: 1.4rem 0 2rem;
}

body:has(.hero) .hero h1 {
  max-width: 650px;
  color: #fff8ea;
  font-size: clamp(3.35rem, 4.85vw, 5.95rem);
  line-height: 0.94;
  letter-spacing: -0.028em;
  margin-bottom: 1.6rem;
}

body:has(.hero) .hero h1 span.highlight {
  display: block;
  color: #d9bd88;
  font-style: italic;
}

body:has(.hero) .hero p.lead {
  max-width: 560px;
  color: rgba(248, 241, 230, 0.78);
  font-size: 1rem;
  border-left: 1px solid rgba(197, 168, 128, 0.42);
  padding-left: 1.6rem;
  margin-bottom: 1.7rem;
}

body:has(.hero) .hero-buttons {
  margin-bottom: 2.2rem;
}

body:has(.hero) .btn-primary {
  background-color: #d1b174;
  border-color: #d1b174;
  color: #10100d;
}

body:has(.hero) .btn-outline {
  border-color: rgba(248, 241, 230, 0.28);
  background-color: rgba(255, 255, 255, 0.03);
}

body:has(.hero) .btn-outline:hover {
  background-color: #f8f1e6;
  color: #11110e;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  border-top: 1px solid rgba(197, 168, 128, 0.22);
  border-bottom: 1px solid rgba(197, 168, 128, 0.22);
}

.hero-proof-strip div {
  padding: 1.35rem 1.4rem;
  border-right: 1px solid rgba(197, 168, 128, 0.18);
}

.hero-proof-strip div:last-child {
  border-right: none;
}

.hero-proof-strip strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.7rem;
  line-height: 1;
  color: #d9bd88;
  font-weight: 400;
}

.hero-proof-strip span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(248, 241, 230, 0.62);
}

body:has(.hero) .hero-visual {
  height: min(62vh, 590px);
  min-height: 470px;
  justify-content: center;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

body:has(.hero) .hero-image-frame {
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(197, 168, 128, 0.34);
  clip-path: polygon(8% 0, 100% 0, 100% 89%, 87% 100%, 0 100%, 0 11%);
}

body:has(.hero) .hero-image-frame img {
  will-change: opacity, transform;
  transition: opacity 0.5s ease-in-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

body:has(.hero) .hero-visual.is-switching .hero-image-frame img {
  opacity: 0.1;
  transform: translateX(10px) scale(1.015);
}

body:has(.hero) .hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

body:has(.hero) .hero-floating-badge,
.hero-signal-card {
  background: rgba(14, 14, 12, 0.72);
  border: 1px solid rgba(217, 189, 136, 0.38);
  color: #f8f1e6;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

body:has(.hero) .hero-visual.is-switching .hero-floating-badge,
body:has(.hero) .hero-visual.is-switching .hero-signal-card {
  opacity: 0;
  transform: translateY(10px);
}

body:has(.hero) .hero-floating-badge {
  left: -34px;
  bottom: 50px;
  max-width: 310px;
  padding: 1.45rem;
  animation: none;
}

.badge-kicker,
.hero-signal-card span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d9bd88;
}

body:has(.hero) .hero-floating-badge h4 {
  color: #fff8ea;
  font-size: 2rem;
}

body:has(.hero) .hero-floating-badge p {
  color: rgba(248, 241, 230, 0.7);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.86rem;
  line-height: 1.55;
}

.hero-signal-card {
  position: absolute;
  right: -18px;
  top: 70px;
  width: 250px;
  padding: 1.25rem;
}

.hero-signal-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff8ea;
  margin-bottom: 1rem;
}

.signal-meter {
  height: 5px;
  background-color: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.signal-meter i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #8ba58a, #d9bd88);
  transition: width 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-hotel-rail {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0.45rem;
  padding: 0.45rem;
  border: 1px solid rgba(217, 189, 136, 0.22);
  border-radius: 24px;
  background-color: rgba(10, 10, 9, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-hotel-rail button {
  min-width: 0;
  border: 0;
  border-radius: 18px;
  padding: 0.62rem 0.78rem;
  background-color: transparent;
  color: rgba(248, 241, 230, 0.56);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.hero-hotel-rail button.active {
  background-color: rgba(217, 189, 136, 0.2);
  color: #fff8ea;
  transform: translateY(-1px);
}

body:has(.hero) .scroll-down span {
  color: rgba(248, 241, 230, 0.52);
}

body:has(.hero) .section-dark {
  background-color: #10110e;
  color: #f8f1e6;
}

body:has(.hero) .section-dark .section-header h2,
body:has(.hero) .section-dark .philosophy-card h3 {
  color: #fff8ea;
}

body:has(.hero) .section-dark .section-header p,
body:has(.hero) .section-dark .philosophy-card p {
  color: rgba(248, 241, 230, 0.67);
}

body:has(.hero) .section-header {
  max-width: 860px;
}

body:has(.hero) .section-header h2 {
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

body:has(.hero) .philosophy-grid {
  gap: 1px;
  background: rgba(217, 189, 136, 0.24);
  border: 1px solid rgba(217, 189, 136, 0.18);
}

body:has(.hero) .philosophy-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #11120f;
  border: none;
  min-height: 390px;
  padding: 2.2rem;
  justify-content: space-between;
}

body:has(.hero) .philosophy-card:hover {
  transform: none;
  background-color: #171811;
  box-shadow: inset 0 0 0 1px rgba(217, 189, 136, 0.38);
}

.card-index {
  display: block;
  margin: 2.8rem 0 1.2rem;
  font-family: var(--font-serif);
  font-size: 4.8rem;
  line-height: 0.8;
  color: rgba(217, 189, 136, 0.22);
}

body:has(.hero) #comparison {
  background-color: #10110e;
  color: #f8f1e6;
}

body:has(.hero) #comparison .section-header h2 {
  color: #fff8ea;
}

body:has(.hero) #comparison .section-header p {
  color: rgba(248, 241, 230, 0.72);
}

body:has(.hero) .slider-container-box {
  position: relative;
  padding: 1rem;
  background-color: #12130f;
  border: 1px solid rgba(217, 189, 136, 0.18);
  border-radius: 24px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.35);
}

body:has(.hero) .slider-container-box::before {
  content: '';
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 20%;
  right: 20%;
  background: radial-gradient(circle, rgba(217, 189, 136, 0.12) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(50px);
  transform: translate3d(calc((var(--slide-pos-raw, 50) - 50) * 3px), 0, 0);
  transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

body:has(.hero) .comparison-slider-ui {
  height: 610px;
  border-radius: 16px;
}

body:has(.hero) .slider-label {
  bottom: auto;
  top: 28px;
  background-color: rgba(10, 10, 9, 0.72);
  border-color: rgba(217, 189, 136, 0.34);
}

body:has(.hero) .slider-text-boxes {
  gap: 1px;
  margin-top: 1px;
  background-color: rgba(217, 189, 136, 0.18);
}

body:has(.hero) .slider-text-box {
  background-color: rgba(14, 14, 12, 0.42);
  border: 1px solid rgba(217, 189, 136, 0.12);
  color: rgba(248, 241, 230, 0.65);
  padding: 2.4rem;
  transition: all 0.4s ease;
}

body:has(.hero) .slider-text-box.active {
  background-color: rgba(217, 189, 136, 0.08);
  border: 1px solid rgba(217, 189, 136, 0.38);
  color: #fff8ea;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

body:has(.hero) .slider-text-box h4 {
  color: rgba(248, 241, 230, 0.88);
  transition: color 0.4s ease;
}

body:has(.hero) .slider-text-box.active h4 {
  color: #d9bd88;
}

body:has(.hero) .slider-text-box p {
  color: rgba(248, 241, 230, 0.62);
  transition: color 0.4s ease;
}

body:has(.hero) .slider-text-box.active p {
  color: rgba(248, 241, 230, 0.82);
}

body:has(.hero) .quiz-container {
  max-width: 980px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    #151611;
  border-color: rgba(217, 189, 136, 0.25);
  color: #f8f1e6;
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.24);
}

body:has(.hero) .quiz-step-header h3,
body:has(.hero) .quiz-result-content h3,
body:has(.hero) .quiz-loading-text,
body:has(.hero) .quiz-result-header h3 {
  color: #fff8ea;
}

body:has(.hero) .quiz-option {
  background-color: rgba(255, 255, 255, 0.035);
  border-color: rgba(217, 189, 136, 0.18);
  color: #f8f1e6;
}

body:has(.hero) .quiz-option:hover,
body:has(.hero) .quiz-option.selected {
  background-color: rgba(217, 189, 136, 0.1);
  border-color: rgba(217, 189, 136, 0.72);
  box-shadow: none;
}

body:has(.hero) .quiz-option-title {
  color: #fff8ea;
}

body:has(.hero) .quiz-option-description,
body:has(.hero) .quiz-result-content p.description,
body:has(.hero) .quiz-result-metric-label {
  color: rgba(248, 241, 230, 0.64);
}

body:has(.hero) #showcase {
  background:
    radial-gradient(circle at 18% 10%, rgba(180, 151, 108, 0.16), transparent 34%),
    linear-gradient(135deg, #080907 0%, #10110d 48%, #171910 100%);
  overflow: hidden;
}

body:has(.hero) .showcase-container {
  grid-template-columns: minmax(460px, 0.94fr) minmax(0, 1.06fr);
  gap: 1px;
  align-items: stretch;
  border: 1px solid rgba(217, 189, 136, 0.28);
  border-radius: 24px;
  background-color: rgba(217, 189, 136, 0.18);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

body:has(.hero) .showcase-visual {
  background:
    radial-gradient(circle at 50% 26%, rgba(217, 189, 136, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    #0d0e0b;
  color: #f8f1e6;
  border: none;
  padding: 2rem 2rem 2.2rem;
  box-shadow: none;
}

body:has(.hero) .hotel-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

body:has(.hero) .hotel-tab {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(217, 189, 136, 0.12);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.018);
  color: rgba(248, 241, 230, 0.58);
  text-align: left;
  flex: initial;
}

body:has(.hero) .hotel-tab.active {
  background:
    linear-gradient(90deg, rgba(217, 189, 136, 0.18), rgba(217, 189, 136, 0.035));
  border-color: rgba(217, 189, 136, 0.62);
  color: #d9bd88;
}

body:has(.hero) .hotel-tab strong {
  font-family: var(--font-sans);
  min-width: 0;
  font-size: clamp(0.66rem, 0.82vw, 0.78rem);
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: inherit;
  white-space: normal;
  overflow-wrap: anywhere;
}

body:has(.hero) .hotel-tab small {
  min-width: 0;
  font-size: 0.62rem;
  line-height: 1.25;
  color: rgba(248, 241, 230, 0.44);
  white-space: normal;
  overflow-wrap: anywhere;
}

body:has(.hero) .hotel-info-block {
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(217, 189, 136, 0.14);
}

body:has(.hero) .hotel-name {
  color: #fff8ea;
  font-size: clamp(2.45rem, 3.4vw, 3.75rem);
  line-height: 0.95;
}

.showcase-mini-image {
  aspect-ratio: 16 / 9;
  height: auto;
  margin-bottom: 1rem;
  border: 1px solid rgba(217, 189, 136, 0.18);
  border-radius: 24px;
  overflow: hidden;
  background-color: #151611;
}

.showcase-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.7s ease;
}

.showcase-mini-image:hover img {
  transform: scale(1.035);
}

.hotel-score-strip {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1.8rem;
  padding: 1rem;
  border: 1px solid rgba(217, 189, 136, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
}

.hotel-score-strip > div:first-child {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(13, 14, 11, 0.82);
  border: 1px solid rgba(217, 189, 136, 0.24);
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
}

.hotel-score-strip > div:first-child span {
  margin-bottom: 0.55rem;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(217, 189, 136, 0.74);
}

.hotel-score-strip > div:first-child strong {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 0.9;
  font-weight: 400;
  color: #fff8ea;
}

.signal-verdict strong {
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 0.95;
  font-weight: 400;
  color: #fff8ea;
}

.signal-verdict p {
  color: rgba(248, 241, 230, 0.66);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

body:has(.hero) .metric-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem 0.75rem;
  padding: 0.92rem;
  border: 1px solid rgba(217, 189, 136, 0.12);
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.024);
  min-height: 92px;
  align-content: center;
}

body:has(.hero) .metrics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

body:has(.hero) .metric-name {
  color: rgba(248, 241, 230, 0.72);
  align-self: start;
  font-size: 0.68rem;
  line-height: 1.35;
}

body:has(.hero) .metric-gauge-wrapper {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 3px;
  height: 18px;
  background: none;
}

body:has(.hero) .metric-gauge-wrapper span {
  display: block;
  background-color: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(217, 189, 136, 0.08);
  border-radius: 999px;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body:has(.hero) .metric-gauge-wrapper span.is-active {
  background: linear-gradient(180deg, #e4c98d, #9faf8d);
  border-color: rgba(228, 201, 141, 0.48);
  box-shadow: 0 0 16px rgba(217, 189, 136, 0.18);
}

body:has(.hero) .metric-value {
  color: #fff8ea;
  text-align: right;
  font-size: 1.25rem;
  line-height: 0.9;
}

body:has(.hero) .showcase-info h3 {
  font-size: clamp(2.8rem, 4.1vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.032em;
  color: #fff8ea;
}

body:has(.hero) .showcase-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 760px;
  padding: 3rem;
  color: #f8f1e6;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 189, 136, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(12, 13, 10, 0.98) 0%, rgba(18, 20, 15, 0.96) 52%, rgba(25, 29, 20, 0.94) 100%),
    #151611;
}

body:has(.hero) .showcase-info > p {
  max-width: 640px;
  color: rgba(248, 241, 230, 0.7);
}

.decision-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0 1.5rem;
}

.decision-card {
  min-height: 158px;
  padding: 1.35rem;
  border: 1px solid rgba(217, 189, 136, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(248, 241, 230, 0.09), rgba(248, 241, 230, 0.025));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.decision-card span {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.62rem;
  min-height: 1.8em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(217, 189, 136, 0.76);
}

.decision-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 1.75vw, 1.9rem);
  line-height: 1.08;
  font-weight: 400;
  color: #fff8ea;
  max-width: 95%;
  margin-top: 0;
}

body:has(.hero) .metric-info-card {
  background-color: rgba(248, 241, 230, 0.08);
  border: 1px solid rgba(217, 189, 136, 0.2);
  border-radius: 24px;
  color: #f8f1e6;
}

body:has(.hero) .metric-info-card h5 {
  color: #fff8ea;
}

body:has(.hero) .metric-info-card p {
  color: rgba(248, 241, 230, 0.68);
}

body:has(.hero) .booking-section {
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.9), rgba(10, 10, 9, 0.62)),
    url('assets/bijal.png') center / cover no-repeat;
  color: #f8f1e6;
}

body:has(.hero) .booking-text h3 {
  color: #fff8ea;
  font-size: clamp(3.4rem, 5.2vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

body:has(.hero) .booking-text p,
body:has(.hero) .booking-step-desc p {
  color: rgba(248, 241, 230, 0.72);
}

body:has(.hero) .booking-step-desc h5 {
  color: #fff8ea;
}

body:has(.hero) .booking-form-box {
  background-color: rgba(248, 241, 230, 0.94);
  border-color: rgba(217, 189, 136, 0.42);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.32);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  h1 { font-size: 3.2rem !important; }
  h2 { font-size: 2.6rem !important; }
  body:has(.hero) .hero {
    min-height: auto;
    padding-bottom: 5rem;
  }
  body:has(.hero) .hero h1 {
    font-size: clamp(3.5rem, 10vw, 5.8rem) !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero::before {
    display: none;
  }
  .hero-visual {
    height: 480px;
    justify-content: center;
  }
  body:has(.hero) .hero-visual {
    height: 520px;
    min-height: 0;
  }
  .hero-image-frame {
    width: 80%;
  }
  body:has(.hero) .hero-image-frame {
    width: 100%;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  body:has(.hero) .showcase-container {
    grid-template-columns: 1fr;
    background-color: #0d0e0b;
  }
  body:has(.hero) .showcase-visual {
    border-right: none;
    border-bottom: 1px solid rgba(217, 189, 136, 0.22);
  }
  body:has(.hero) .showcase-info {
    min-height: auto;
  }
  .decision-board {
    grid-template-columns: 1fr;
  }
  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  body:has(.hero) header .container {
    height: 76px;
  }
  nav {
    display: none; /* Mobile full screen nav menu can be added later */
  }
  .nav-cta {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  section {
    padding: 5rem 0;
  }
  body:has(.hero) .hero {
    padding-top: 104px;
  }
  body:has(.hero) .hero h1 {
    font-size: 3.3rem !important;
    line-height: 0.96;
  }
  body:has(.hero) .hero p.lead {
    padding-left: 1rem;
    font-size: 0.95rem;
  }
  body:has(.hero) .hero-buttons {
    flex-direction: column;
    gap: 0.9rem;
  }
  .hero-proof-strip {
    grid-template-columns: 1fr;
  }
  .hero-proof-strip div {
    border-right: none;
    border-bottom: 1px solid rgba(197, 168, 128, 0.18);
  }
  .hero-proof-strip div:last-child {
    border-bottom: none;
  }
  body:has(.hero) .hero-visual {
    height: 390px;
  }
  body:has(.hero) .hero-floating-badge {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
  .hero-signal-card {
    display: none;
  }
  .hero-hotel-rail {
    left: 1rem;
    right: 1rem;
    bottom: auto;
    top: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-hotel-rail button {
    font-size: 0.58rem;
    padding: 0.55rem 0.5rem;
  }
  .slider-container-box {
    padding: 1.5rem;
  }
  body:has(.hero) .comparison-slider-ui {
    height: 380px;
  }
  .comparison-wrapper {
    height: 380px;
  }
  .slider-text-boxes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .quiz-container {
    padding: 2.5rem 1.5rem;
  }
  .quiz-options {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .quiz-result-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .quiz-result-image {
    height: 250px;
  }
  .showcase-visual {
    padding: 2rem 1.5rem;
  }
  .metric-row {
    grid-template-columns: 130px 1fr 40px;
    gap: 0.8rem;
  }
  body:has(.hero) .metric-row {
    grid-template-columns: auto 1fr;
    gap: 0.45rem;
  }
  body:has(.hero) .metric-value {
    text-align: left;
  }
  body:has(.hero) .hotel-tab {
    flex-basis: 100%;
  }
  body:has(.hero) .hotel-selector {
    grid-template-columns: 1fr;
  }
  .hotel-score-strip {
    grid-template-columns: 1fr;
  }
  body:has(.hero) .metrics-grid {
    grid-template-columns: 1fr;
  }
  body:has(.hero) .showcase-info {
    padding: 1.5rem;
  }
  .decision-card {
    min-height: 150px;
  }
  .booking-form-box {
    padding: 2.5rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr !important;
  }
  .form-checkbox-group {
    flex-direction: column;
    gap: 0.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}
