/* ==========================================================================
   VISTAMARE LUXURY - DARK NAVY & CHAMPAGNE GOLD DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Colors */
  --vm-navy-950: #050811;
  --vm-navy-900: #080e1a;
  --vm-navy-850: #0d172a;
  --vm-navy-800: #111e38;
  --vm-navy-750: #162647;
  --vm-navy-700: #1e335e;
  
  --vm-gold-300: #f1dfbc;
  --vm-gold-400: #dfba73;
  --vm-gold-500: #c5a880;
  --vm-gold-600: #a8895e;
  --vm-gold-700: #886c44;

  --vm-gold-gradient: linear-gradient(135deg, #dfba73 0%, #c5a880 50%, #9e7d48 100%);
  --vm-gold-gradient-hover: linear-gradient(135deg, #f1dfbc 0%, #dfba73 50%, #c5a880 100%);
  --vm-gold-glow: 0 4px 25px rgba(212, 175, 55, 0.28);
  --vm-navy-glow: 0 10px 40px rgba(5, 8, 17, 0.7);

  --vm-text-white: #ffffff;
  --vm-text-light: #f8fafc;
  --vm-text-cream: #f4eee2;
  --vm-text-muted: #94a3b8;
  --vm-text-dim: #64748b;

  --vm-border-gold: rgba(197, 168, 128, 0.25);
  --vm-border-gold-bright: rgba(223, 186, 115, 0.6);
  --vm-border-navy: rgba(255, 255, 255, 0.08);

  /* Typography */
  --vm-font-serif: 'Playfair Display', Georgia, serif;
  --vm-font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --vm-transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --vm-radius-sm: 4px;
  --vm-radius-md: 8px;
  --vm-radius-lg: 14px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

body.vistamare-dark-theme,
.vistamare-page-wrapper {
  background-color: var(--vm-navy-900) !important;
  color: var(--vm-text-light) !important;
  font-family: var(--vm-font-sans) !important;
  line-height: 1.7;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Typography Base */
h1, h2, h3, h4, h5, h6,
.vm-heading {
  font-family: var(--vm-font-serif) !important;
  color: var(--vm-text-white) !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 0;
}

p {
  color: var(--vm-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

a {
  color: var(--vm-gold-400);
  text-decoration: none;
  transition: var(--vm-transition);
}

a:hover {
  color: var(--vm-gold-300);
}

/* Container */
.vm-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.vm-container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Common Layout */
.vm-section {
  padding: 110px 0;
  position: relative;
  background-color: var(--vm-navy-900);
}

.vm-section-alt {
  background-color: var(--vm-navy-850);
}

.vm-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.vm-section-badge {
  display: inline-block;
  font-family: var(--vm-font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vm-gold-400);
  background: rgba(197, 168, 128, 0.1);
  border: 1px solid var(--vm-border-gold);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.vm-section-title {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 600;
  color: var(--vm-text-white);
  line-height: 1.25;
  margin-bottom: 18px;
}

.vm-title-gold {
  color: var(--vm-gold-400) !important;
}

.vm-section-desc {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--vm-text-muted);
}

/* Luxury Divider */
.vm-gold-divider {
  width: 60px;
  height: 2px;
  background: var(--vm-gold-gradient);
  margin: 24px auto;
}

/* ==========================================================================
   BUTTONS (CTAs)
   ========================================================================== */
.vm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: var(--vm-font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--vm-radius-sm);
  cursor: pointer;
  transition: var(--vm-transition);
  text-decoration: none;
}

.vm-btn-gold {
  background: var(--vm-gold-gradient);
  color: #080e1a !important;
  border: 1px solid transparent;
  box-shadow: var(--vm-gold-glow);
}

.vm-btn-gold:hover {
  background: var(--vm-gold-gradient-hover);
  color: #050811 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(223, 186, 115, 0.4);
}

.vm-btn-outline {
  background: transparent;
  color: var(--vm-gold-400) !important;
  border: 1px solid var(--vm-border-gold-bright);
}

.vm-btn-outline:hover {
  background: rgba(197, 168, 128, 0.12);
  color: var(--vm-gold-300) !important;
  border-color: var(--vm-gold-300);
  transform: translateY(-3px);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.vm-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 14, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--vm-border-gold);
  transition: var(--vm-transition);
}

.vm-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.vm-nav.scrolled {
  height: 76px;
  background: rgba(8, 14, 26, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vm-nav.scrolled .vm-nav-inner {
  height: 76px;
}

.vm-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vm-brand-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--vm-transition);
}

.vm-nav.scrolled .vm-brand-logo img {
  height: 48px;
}

.vm-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 36px;
}

.vm-menu-link {
  font-family: var(--vm-font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--vm-text-cream) !important;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
  transition: var(--vm-transition);
}

.vm-menu-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--vm-gold-gradient);
  transition: var(--vm-transition);
}

.vm-menu-link:hover,
.vm-menu-link.active {
  color: var(--vm-gold-400) !important;
}

.vm-menu-link:hover::after,
.vm-menu-link.active::after {
  width: 100%;
}

.vm-nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Mobile Nav Toggle */
.vm-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-sm);
  padding: 8px 12px;
  color: var(--vm-gold-400);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.vm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 100px 0;
  overflow: hidden;
  background-color: var(--vm-navy-900);
}

.vm-hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.vm-hero-media-wrapper iframe,
.vm-hero-media-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  pointer-events: none;
}

/* Deep Navy Dark Luxury Overlay */
.vm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 26, 0.76) 0%,
    rgba(11, 19, 37, 0.86) 55%,
    rgba(8, 14, 26, 0.98) 100%
  );
}

.vm-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
}

.vm-hero-logo {
  max-width: 220px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.6));
}

.vm-hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 600;
  color: var(--vm-text-white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.vm-hero-subtitle {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  color: var(--vm-text-cream);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 36px auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.vm-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 70px;
}

/* Hero Feature Cards (Front-Row Luxury, Bespoke Experiences, Yeni İskele’s Gem) */
.vm-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 3;
}

.vm-feature-card {
  background: rgba(13, 23, 42, 0.85);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-md);
  padding: 32px 24px;
  text-align: left;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--vm-transition);
}

.vm-feature-card:hover {
  border-color: var(--vm-gold-400);
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), var(--vm-gold-glow);
}

.vm-feature-icon-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid var(--vm-border-gold);
  border-radius: 50%;
  color: var(--vm-gold-400);
  margin-bottom: 18px;
}

.vm-feature-title {
  font-size: 1.25rem;
  color: var(--vm-text-white);
  margin-bottom: 12px;
}

.vm-feature-desc {
  font-size: 0.95rem;
  color: var(--vm-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   LIVING THE HORIZON SECTION
   ========================================================================== */
.vm-horizon {
  background-color: var(--vm-navy-850);
  background-image: url('https://vistamarecyprus.com/wp-content/uploads/2020/04/topography.svg');
  background-repeat: repeat;
  background-size: 600px;
  background-position: center;
  position: relative;
}

.vm-horizon-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.vm-horizon-text {
  padding-right: 20px;
}

/* Puzzle Mosaic Grid (Single Photograph Split into 2x2 Quadrants) */
.vm-puzzle-frame {
  position: relative;
  border-radius: var(--vm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vm-border-gold);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6), var(--vm-gold-glow);
  background: rgba(197, 168, 128, 0.3); /* hairline gold seam */
  padding: 1px;
  max-width: 520px;
  margin: 0 auto;
}

.vm-puzzle-grid {
  display: grid;
  grid-template-columns: 461fr 460fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: rgba(197, 168, 128, 0.25);
  border-radius: calc(var(--vm-radius-lg) - 2px);
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}

.vm-puzzle-piece {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  background: var(--vm-navy-900);
}

.vm-puzzle-piece img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: middle;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vm-puzzle-frame:hover .vm-puzzle-piece img {
  transform: scale(1.03);
}

/* ==========================================================================
   SIGNATURE SUITES SECTION
   ========================================================================== */
.vm-suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vm-suite-card {
  background: var(--vm-navy-850);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-lg);
  overflow: hidden;
  transition: var(--vm-transition);
  display: flex;
  flex-direction: column;
}

.vm-suite-card:hover {
  border-color: var(--vm-gold-400);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--vm-gold-glow);
}

.vm-suite-image-box {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.vm-suite-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.vm-suite-card:hover .vm-suite-image-box img {
  transform: scale(1.08);
}

.vm-suite-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(8, 14, 26, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--vm-border-gold);
  color: var(--vm-gold-400);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.vm-suite-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vm-suite-title {
  font-size: 1.45rem;
  color: var(--vm-text-white);
  margin-bottom: 12px;
}

.vm-suite-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--vm-border-navy);
}

/* ==========================================================================
   LOCATION & BESPOKE JOURNEYS SECTION
   ========================================================================== */
.vm-journeys-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.vm-journey-card {
  background: var(--vm-navy-850);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-lg);
  padding: 44px 36px;
  transition: var(--vm-transition);
  position: relative;
  overflow: hidden;
}

.vm-journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: var(--vm-gold-gradient);
  transition: var(--vm-transition);
}

.vm-journey-card:hover {
  transform: translateY(-6px);
  border-color: var(--vm-gold-400);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.vm-journey-card:hover::before {
  height: 100%;
}

.vm-journey-title {
  font-size: 1.55rem;
  color: var(--vm-text-white);
  margin-bottom: 16px;
}

.vm-journey-desc {
  font-size: 1.05rem;
  color: var(--vm-text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ==========================================================================
   THE VISTAMARE EXPERIENCE SECTION
   ========================================================================== */
.vm-experience-featured {
  position: relative;
  border-radius: var(--vm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vm-border-gold);
  margin-bottom: 60px;
  height: 480px;
  display: flex;
  align-items: flex-end;
}

.vm-experience-featured img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.vm-experience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    0deg,
    rgba(8, 14, 26, 0.95) 0%,
    rgba(8, 14, 26, 0.65) 50%,
    rgba(8, 14, 26, 0.2) 100%
  );
}

.vm-experience-featured-content {
  position: relative;
  z-index: 3;
  padding: 48px;
  max-width: 720px;
}

/* 4-Card Experience Grid */
.vm-exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.vm-exp-card {
  background: var(--vm-navy-850);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-md);
  overflow: hidden;
  transition: var(--vm-transition);
}

.vm-exp-card:hover {
  border-color: var(--vm-gold-400);
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.vm-exp-img-box {
  height: 200px;
  overflow: hidden;
}

.vm-exp-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vm-exp-card:hover .vm-exp-img-box img {
  transform: scale(1.08);
}

.vm-exp-card-body {
  padding: 22px;
  text-align: center;
}

.vm-exp-card-title {
  font-size: 1.15rem;
  color: var(--vm-text-white);
  margin: 0;
}

/* Sanctuary Banner */
.vm-sanctuary-box {
  background: linear-gradient(135deg, rgba(17, 30, 56, 0.9) 0%, rgba(13, 23, 42, 0.95) 100%);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--vm-navy-glow);
}

.vm-sanctuary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

/* ==========================================================================
   ABOUT PAGE TEMPLATE STYLES
   ========================================================================== */
.vm-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 60px 0;
  background-color: var(--vm-navy-900);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.vm-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(8, 14, 26, 0.8) 0%,
    rgba(8, 14, 26, 0.95) 100%
  );
  z-index: 1;
}

.vm-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.vm-story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

.vm-story-block.reversed {
  direction: rtl;
}

.vm-story-block.reversed > * {
  direction: ltr;
}

.vm-story-img-box {
  position: relative;
  border-radius: var(--vm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vm-border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.vm-story-img-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   CONTACT PAGE TEMPLATE STYLES
   ========================================================================== */
.vm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}

.vm-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vm-contact-card {
  background: var(--vm-navy-850);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-md);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--vm-transition);
}

.vm-contact-card:hover {
  border-color: var(--vm-gold-400);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vm-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid var(--vm-border-gold);
  color: var(--vm-gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-contact-detail h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--vm-text-white);
}

.vm-contact-detail p,
.vm-contact-detail a {
  color: var(--vm-text-muted);
  font-size: 1rem;
  margin: 0;
}

.vm-contact-detail a:hover {
  color: var(--vm-gold-400);
}

/* Luxury Inquiry Form */
.vm-form-card {
  background: var(--vm-navy-850);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-lg);
  padding: 44px;
  box-shadow: var(--vm-navy-glow);
}

.vm-form-group {
  margin-bottom: 22px;
}

.vm-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vm-text-cream);
  margin-bottom: 8px;
}

.vm-input,
.vm-textarea,
.vm-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--vm-navy-900);
  border: 1px solid var(--vm-border-navy);
  border-radius: var(--vm-radius-sm);
  color: var(--vm-text-white);
  font-family: var(--vm-font-sans);
  font-size: 1rem;
  transition: var(--vm-transition);
}

.vm-input:focus,
.vm-textarea:focus,
.vm-select:focus {
  outline: none;
  border-color: var(--vm-gold-400);
  box-shadow: 0 0 12px rgba(223, 186, 115, 0.25);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.vm-footer {
  background-color: var(--vm-navy-950);
  border-top: 1px solid var(--vm-border-gold);
  padding: 80px 0 30px 0;
}

.vm-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.vm-footer-col h4 {
  font-size: 1.2rem;
  color: var(--vm-text-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.vm-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--vm-gold-gradient);
}

.vm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-footer-links li {
  margin-bottom: 12px;
}

.vm-footer-links a {
  color: var(--vm-text-muted);
  font-size: 0.95rem;
  transition: var(--vm-transition);
}

.vm-footer-links a:hover {
  color: var(--vm-gold-400);
  padding-left: 6px;
}

.vm-social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.vm-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vm-navy-850);
  border: 1px solid var(--vm-border-gold);
  color: var(--vm-gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--vm-transition);
}

.vm-social-icon:hover {
  background: var(--vm-gold-gradient);
  color: #080e1a;
  transform: translateY(-3px);
  box-shadow: var(--vm-gold-glow);
}

.vm-footer-bottom {
  border-top: 1px solid var(--vm-border-navy);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--vm-text-dim);
}

/* ==========================================================================
   LUXURY BOOKING BAR (HERO WIDGET)
   ========================================================================== */
.vm-booking-bar-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -55px;
  padding: 0 24px;
}

.vm-booking-bar {
  background: rgba(13, 23, 42, 0.92);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-lg);
  padding: 24px 32px;
  box-shadow: 0 16px 45px rgba(5, 8, 17, 0.8), var(--vm-gold-glow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1fr 1.3fr;
  gap: 20px;
  align-items: center;
}

.vm-booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vm-booking-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vm-gold-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

.vm-booking-input,
.vm-booking-select {
  background: rgba(8, 14, 26, 0.85);
  border: 1px solid var(--vm-border-navy);
  border-radius: var(--vm-radius-sm);
  color: var(--vm-text-white);
  padding: 10px 14px;
  font-family: var(--vm-font-sans);
  font-size: 0.9rem;
  transition: var(--vm-transition);
  width: 100%;
}

.vm-booking-input:focus,
.vm-booking-select:focus {
  outline: none;
  border-color: var(--vm-gold-400);
  box-shadow: 0 0 12px rgba(223, 186, 115, 0.3);
}

.vm-booking-btn {
  height: 48px;
  align-self: flex-end;
  font-size: 0.85rem !important;
  white-space: nowrap;
}

/* ==========================================================================
   SUITE SPECIFICATION PILLS
   ========================================================================== */
.vm-suite-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.vm-spec-pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--vm-text-cream);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--vm-border-navy);
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vm-suite-rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--vm-border-navy);
}

.vm-suite-rate {
  font-size: 0.85rem;
  color: var(--vm-gold-400);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   RESORT PRIVILEGES & AMENITIES GRID
   ========================================================================== */
.vm-privileges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vm-privilege-card {
  background: var(--vm-navy-850);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-md);
  padding: 32px 26px;
  transition: var(--vm-transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.vm-privilege-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--vm-gold-gradient);
  transition: var(--vm-transition);
}

.vm-privilege-card:hover {
  transform: translateY(-5px);
  border-color: var(--vm-gold-400);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), var(--vm-gold-glow);
}

.vm-privilege-card:hover::after {
  width: 100%;
}

.vm-privilege-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid var(--vm-border-gold);
  color: var(--vm-gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vm-privilege-title {
  font-size: 1.25rem;
  color: var(--vm-text-white);
  margin: 0;
}

.vm-privilege-desc {
  font-size: 0.95rem;
  color: var(--vm-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   INTERACTIVE RESERVATION MODAL
   ========================================================================== */
.vm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 17, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vm-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.vm-modal-content {
  background: var(--vm-navy-850);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--vm-gold-glow);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.vm-modal-overlay.active .vm-modal-content {
  transform: translateY(0);
}

.vm-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--vm-gold-400);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: var(--vm-transition);
}

.vm-modal-close:hover {
  color: var(--vm-text-white);
  transform: scale(1.15);
}


/* ==========================================================================
   HOTEL METRICS & STATS COUNTER BAR
   ========================================================================== */
.vm-stats-bar {
  background: var(--vm-navy-850);
  border-top: 1px solid var(--vm-border-gold);
  border-bottom: 1px solid var(--vm-border-gold);
  padding: 40px 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.vm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.vm-stat-item {
  position: relative;
}

.vm-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  background: var(--vm-border-gold);
}

.vm-stat-number {
  font-family: var(--vm-font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--vm-gold-400);
  line-height: 1.1;
  margin-bottom: 8px;
}

.vm-stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--vm-text-cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   INTERACTIVE LUXURY GALLERY SHOWCASE
   ========================================================================== */
.vm-gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.vm-filter-btn {
  background: rgba(13, 23, 42, 0.8);
  border: 1px solid var(--vm-border-gold);
  color: var(--vm-text-cream);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--vm-font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--vm-transition);
}

.vm-filter-btn:hover,
.vm-filter-btn.active {
  background: var(--vm-gold-gradient);
  color: #080e1a;
  border-color: transparent;
  box-shadow: var(--vm-gold-glow);
  transform: translateY(-2px);
}

.vm-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vm-gallery-card {
  position: relative;
  border-radius: var(--vm-radius-md);
  overflow: hidden;
  border: 1px solid var(--vm-border-gold);
  height: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.vm-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.vm-gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(8, 14, 26, 0.95) 0%, rgba(8, 14, 26, 0.3) 60%, rgba(8, 14, 26, 0) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--vm-transition);
}

.vm-gallery-card:hover img {
  transform: scale(1.1);
}

.vm-gallery-card:hover .vm-gallery-card-overlay {
  opacity: 1;
}

.vm-gallery-card-title {
  color: var(--vm-text-white);
  font-size: 1.15rem;
  margin: 0 0 4px 0;
}

.vm-gallery-card-tag {
  color: var(--vm-gold-400);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   GUEST REVIEWS & TESTIMONIALS
   ========================================================================== */
.vm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vm-review-card {
  background: rgba(13, 23, 42, 0.85);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--vm-transition);
  position: relative;
}

.vm-review-card:hover {
  transform: translateY(-6px);
  border-color: var(--vm-gold-400);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), var(--vm-gold-glow);
}

.vm-stars {
  color: #fcb900;
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.vm-review-quote {
  font-family: var(--vm-font-serif);
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--vm-text-cream);
  font-style: italic;
  margin-bottom: 24px;
}

.vm-reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--vm-border-navy);
}

.vm-reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vm-gold-gradient);
  color: #080e1a;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.vm-reviewer-name {
  font-weight: 600;
  color: var(--vm-text-white);
  font-size: 0.95rem;
  margin: 0;
}

.vm-reviewer-loc {
  font-size: 0.8rem;
  color: var(--vm-gold-400);
  margin: 0;
}

/* ==========================================================================
   CONCIERGE FAQ ACCORDION
   ========================================================================== */
.vm-faq-wrapper {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vm-faq-item {
  background: var(--vm-navy-850);
  border: 1px solid var(--vm-border-gold);
  border-radius: var(--vm-radius-md);
  overflow: hidden;
  transition: var(--vm-transition);
}

.vm-faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: var(--vm-text-white);
  font-family: var(--vm-font-serif);
  font-size: 1.15rem;
  transition: var(--vm-transition);
}

.vm-faq-question:hover {
  color: var(--vm-gold-400);
}

.vm-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--vm-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vm-gold-400);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.vm-faq-item.active .vm-faq-icon {
  transform: rotate(180deg);
  background: var(--vm-gold-gradient);
  color: #080e1a;
  border-color: transparent;
}

.vm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 28px;
  color: var(--vm-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.vm-faq-item.active .vm-faq-answer {
  max-height: 250px;
  padding: 0 28px 24px 28px;
}


/* ==========================================================================
   PRECISE RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .vm-booking-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .vm-booking-btn {
    grid-column: span 2;
  }
  .vm-privileges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .vm-section {
    padding: 80px 0;
  }
  .vm-hero {
    padding: 140px 0 80px 0;
    min-height: auto;
  }
  .vm-hero-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vm-suites-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .vm-horizon-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vm-horizon-text {
    padding-right: 0;
    text-align: center;
  }
  .vm-gold-divider {
    margin: 20px auto !important;
  }
  .vm-journeys-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vm-exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .vm-sanctuary-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vm-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .vm-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vm-reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .vm-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

}

@media (max-width: 768px) {
  .vm-nav {
    height: 72px;
  }
  .vm-nav-inner {
    height: 72px;
  }
  .vm-brand-logo img {
    height: 44px;
  }
  .vm-menu {
    display: none;
  }
  .vm-nav-actions .vm-btn {
    display: none;
  }
  .vm-menu-toggle {
    display: block;
  }
  
  .vm-booking-bar-wrapper {
    margin-top: -30px;
    padding: 0 16px;
  }
  .vm-booking-bar {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 14px;
  }
  .vm-booking-btn {
    grid-column: span 1;
    width: 100%;
  }

  .vm-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }
  .vm-hero-actions .vm-btn {
    width: 100%;
  }

  .vm-privileges-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vm-exp-grid {
    grid-template-columns: 1fr;
  }
  .vm-story-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .vm-story-img-box img {
    height: 260px;
  }
  .vm-contact-grid {
    grid-template-columns: 1fr;
  }
  .vm-form-card {
    padding: 28px 20px;
  }
  .vm-form-card div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .vm-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .vm-experience-featured {
    height: 380px;
  }
  .vm-experience-featured-content {
    padding: 20px;
  }
  
  .vm-modal-content {
    padding: 28px 20px;
  }

  /* Puzzle on mobile: perfectly scaled and responsive */
  .vm-puzzle-frame {
    max-width: 100%;
    padding: 1px;
  }

  .vm-showcase-grid {
    grid-template-columns: 1fr;
  }
  .vm-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vm-stat-item:not(:last-child)::after {
    display: none;
  }
  .vm-gallery-filters {
    gap: 8px;
  }
  .vm-filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .vm-section-title {
    font-size: 1.85rem;
  }
  .vm-hero-title {
    font-size: 2.5rem;
  }
  .vm-hero-subtitle {
    font-size: 1rem;
  }
  .vm-feature-card {
    padding: 24px 18px;
  }
  .vm-journey-card {
    padding: 30px 20px;
  }
  .vm-sanctuary-box {
    padding: 32px 20px;
  }
}
