/* ==========================================================================
   Seven Star Concierge - Luxury Styling & Motion System
   Palette: Black (#080808), Pure White (#FFFFFF), Imperial Gold (#D4AF37)
   ========================================================================== */

:root {
  --bg-pure-black: #050505;
  --bg-card: rgba(18, 18, 20, 0.75);
  --bg-card-hover: rgba(26, 26, 30, 0.85);
  --bg-elevated: #111114;
  
  --gold-primary: #D4AF37;
  --gold-light: #F7E7A9;
  --gold-bright: #FFDF73;
  --gold-dark: #9A7B2C;
  --gold-glow: rgba(212, 175, 55, 0.22);
  --gold-border: rgba(212, 175, 55, 0.3);
  --gold-border-strong: rgba(212, 175, 55, 0.7);

  --text-white: #FFFFFF;
  --text-silver: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dark: #64748B;

  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --header-height: 88px;
  --header-height-shrunk: 70px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background-color: var(--bg-pure-black);
  color: var(--text-silver);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-pure-black);
  position: relative;
  min-height: 100vh;
}

/* Ambient Subtle Lighting */
body::before {
  content: '';
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(5, 5, 5, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Typography Utility */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  color: var(--text-white);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #FFF6D1 0%, #D4AF37 50%, #AA822A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gold-subtle {
  color: var(--gold-light);
}

.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #EAD794 0%, #D4AF37 50%, #A68026 100%);
  color: #070707;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.32);
  transition: var(--transition-smooth);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: transform 0.6s ease;
  transform: skewX(-20deg);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  color: #000;
}

.btn-gold:hover::after {
  transform: skewX(-20deg) translateX(240%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  background: rgba(15, 15, 18, 0.6);
  color: var(--text-white);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.18);
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: height 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.site-header.shrunk {
  height: var(--header-height-shrunk);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(212, 175, 55, 0.2);
}

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
  transition: transform 0.3s ease;
}

.site-header.shrunk .brand-logo-img {
  height: 40px;
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.04);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-white);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  position: relative;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-silver);
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-primary));
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.3rem;
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background: rgba(10, 10, 12, 0.98);
  border-left: 1px solid var(--gold-border);
  backdrop-filter: blur(24px);
  z-index: 1100;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.85);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-close-btn {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-links {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-links a {
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  transition: color 0.3s;
}

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

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Sections Global */
section {
  position: relative;
  z-index: 1;
  padding: 120px 24px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px auto;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.2;
  margin: 16px 0;
  font-weight: 600;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(10, 10, 12, 0.45) 0%, rgba(5, 5, 5, 0.95) 85%);
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroKenBurns 24s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% { transform: scale(1); filter: brightness(0.65); }
  100% { transform: scale(1.08); filter: brightness(0.85); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

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

.hero-headline {
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 24px 0 20px 0;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--text-silver);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero Showcase Card */
.hero-showcase {
  position: relative;
}

.showcase-glass-card {
  background: rgba(18, 18, 22, 0.7);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.15);
  position: relative;
}

.showcase-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 380px;
}

.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.2s ease;
}

.slider-img.active {
  opacity: 1;
  transform: scale(1);
}

.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.slider-caption-text h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.slider-caption-text p {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot-btn {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.dot-btn.active {
  background: var(--gold-primary);
}

.showcase-floating-badge {
  position: absolute;
  top: -18px;
  right: -14px;
  background: rgba(10, 10, 12, 0.92);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  z-index: 5;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Service Pillars Tabs */
.pillar-nav-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.pillar-tabs {
  display: inline-flex;
  background: rgba(20, 20, 24, 0.8);
  border: 1px solid var(--gold-border);
  padding: 6px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  gap: 6px;
}

.pillar-tab-btn {
  background: none;
  border: none;
  padding: 10px 26px;
  border-radius: 999px;
  color: var(--text-silver);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pillar-tab-btn.active, .pillar-tab-btn:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}

.pillar-tab-btn.active {
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
}

/* Dynamic Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.luxury-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
}

.luxury-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.2);
}

.card-image-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-card:hover .card-image {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(8, 8, 10, 0.85);
  border: 1px solid var(--gold-border);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.card-status-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  color: #FFFFFF;
}

.card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-silver);
}

.spec-item svg {
  color: var(--gold-primary);
  width: 14px;
  height: 14px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-rate {
  display: flex;
  flex-direction: column;
}

.rate-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rate-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
}

.btn-book-action {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-book-action:hover {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);
}

/* About / Seven Standard Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-main-img-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.about-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.about-floating-card {
  position: absolute;
  bottom: -30px;
  right: -24px;
  background: rgba(15, 15, 18, 0.95);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  max-width: 320px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
}

.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-silver);
  line-height: 1.5;
  margin-bottom: 12px;
}

.about-cite {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.feature-item {
  background: rgba(18, 18, 22, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  background: rgba(25, 25, 30, 0.7);
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.feature-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Inquiry Form Section */
.inquiry-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-pure-black) 0%, #0d0d10 50%, var(--bg-pure-black) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.inquiry-wrapper {
  background: rgba(15, 15, 18, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 40px rgba(212, 175, 55, 0.12);
  position: relative;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.inquiry-wrapper.highlight-glow {
  border-color: var(--gold-bright);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.45);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.inquiry-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inquiry-info-top h3 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.inquiry-info-top p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.inquiry-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-mini-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(22, 22, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-mini-card:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-primary);
  transform: translateX(6px);
}

.contact-mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-mini-text h5 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2px;
}

.contact-mini-text span {
  font-size: 0.78rem;
  color: var(--gold-light);
}

.inquiry-guarantee-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px dashed var(--gold-border);
  padding: 16px 20px;
  border-radius: var(--radius-md);
}

.inquiry-guarantee-badge svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.inquiry-guarantee-badge p {
  font-size: 0.8rem;
  color: var(--text-silver);
  margin: 0;
}

/* Form Elements */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-silver);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label span.req {
  color: var(--gold-primary);
}

.input-field,
.select-field,
.textarea-field {
  width: 100%;
  background: rgba(8, 8, 10, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.input-field:focus,
.select-field:focus,
.textarea-field:focus {
  border-color: var(--gold-primary);
  background: rgba(14, 14, 18, 0.95);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.select-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.select-field option {
  background: #111114;
  color: #FFFFFF;
  padding: 10px;
}

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

.category-radio-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.category-radio-btn {
  position: relative;
}

.category-radio-btn input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.category-radio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  background: rgba(12, 12, 14, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.3s ease;
  font-weight: 600;
  gap: 6px;
}

.category-radio-btn input:checked + .category-radio-label {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.prefill-indicator {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--gold-light);
  animation: fadeIn 0.4s ease;
}

.prefill-indicator.visible {
  display: flex;
}

/* Success Modal / Feedback */
.form-feedback-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.success-modal {
  background: #111115;
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 580px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(212, 175, 55, 0.3);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.success-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 2px solid var(--gold-primary);
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
}

.success-modal h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.inquiry-ref-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 16px;
  border-radius: 999px;
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--gold-light);
  margin: 16px 0 24px 0;
}

/* FAQ Accordion */
.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-card.open {
  border-color: var(--gold-border-strong);
  background: rgba(22, 22, 26, 0.9);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-icon-arrow {
  color: var(--gold-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-card.open .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-card.open .faq-answer {
  max-height: 250px;
  padding-bottom: 24px;
}

/* Footer */
.site-footer {
  background: #040405;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 80px 24px 40px 24px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 18px 0 24px 0;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 22px;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-silver);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-dark);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Floating Quick Concierge Trigger */
.floating-vip-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 12, 0.9);
  border: 1px solid var(--gold-primary);
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-vip-trigger:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.6);
  background: var(--gold-primary);
  color: #000;
}

/* Scroll reveal animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Native CSS Scroll-driven entry where supported */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes entryReveal {
      from {
        opacity: 0;
        transform: translateY(36px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal-on-scroll {
      animation: entryReveal auto cubic-bezier(0.16, 1, 0.3, 1) forwards;
      animation-timeline: view();
      animation-range: entry 10% cover 30%;
    }
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal-on-scroll,
  .hero-bg-image {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   Mobile Navigation Drawer & Touch Enhancements
   ========================================================================== */
.mobile-drawer-top {
  display: flex;
  flex-direction: column;
}

.mobile-drawer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-drawer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 6px;
}

.drawer-contact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 0.8rem;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: all 0.2s ease;
}

.drawer-contact-pill:active {
  background: var(--gold-primary);
  color: #000;
}

.mobile-link-icon {
  color: var(--gold-primary);
  font-size: 0.75rem;
  margin-right: 8px;
}

.mobile-links a {
  display: flex;
  align-items: center;
  padding: 8px 0;
  min-height: 44px; /* Accessible touch target */
}

.mobile-close-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-main-img {
    height: 380px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
    --header-height-shrunk: 64px;
  }

  /* Safe Area Support */
  body {
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .header-container {
    padding: 0 16px;
  }

  .brand-logo-img {
    height: 38px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.58rem;
  }

  .main-nav,
  .nav-cta-wrap .btn-gold {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  /* Mobile Drawer full height with safe padding */
  .mobile-nav-drawer {
    width: 88%;
    max-width: 340px;
    padding: max(24px, env(safe-area-inset-top, 24px)) 24px max(24px, env(safe-area-inset-bottom, 24px)) 24px;
  }

  /* Section Spacing */
  section {
    padding: 70px 16px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Hero Section */
  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 20px + env(safe-area-inset-top, 0px));
    padding-bottom: 60px;
  }

  .hero-headline {
    font-size: clamp(2.1rem, 7.8vw, 2.9rem);
    margin: 18px 0 16px 0;
  }

  .hero-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-outline {
    width: 100%;
    min-height: 48px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 20px;
    margin-top: 28px;
  }

  .stat-num {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .showcase-glass-card {
    padding: 16px;
    margin-top: 10px;
  }

  .showcase-slider {
    height: 240px;
  }

  .showcase-floating-badge {
    top: -12px;
    right: 10px;
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  /* Pillar Navigation (Swipeable horizontal tabs on mobile) */
  .pillar-nav-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 4px 16px 4px;
    justify-content: flex-start;
    margin-bottom: 32px;
  }

  .pillar-nav-wrapper::-webkit-scrollbar {
    display: none;
  }

  .pillar-tabs {
    display: inline-flex;
    flex-shrink: 0;
    gap: 4px;
    padding: 4px;
  }

  .pillar-tab-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
    white-space: nowrap;
    min-height: 40px;
  }

  /* Cards Grid & Cards */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .luxury-card {
    border-radius: var(--radius-md);
  }

  .card-image-wrap {
    height: 210px;
  }

  .card-body {
    padding: 20px 16px;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-desc {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  .card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .btn-book-action {
    width: 100%;
    justify-content: center;
    min-height: 46px;
    font-size: 0.85rem;
  }

  /* About section mobile stacking */
  .about-main-img {
    height: 300px;
  }

  .about-floating-card {
    position: static;
    margin-top: 16px;
    max-width: 100%;
    border-radius: var(--radius-sm);
    padding: 18px 20px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Inquiry Form Mobile Enhancements */
  .inquiry-wrapper {
    padding: 28px 16px;
    border-radius: var(--radius-lg);
  }

  .inquiry-info-top h3 {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .category-radio-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .category-radio-label {
    min-height: 52px;
    padding: 10px 4px;
    font-size: 0.75rem;
  }

  /* iOS Auto-Zoom fix: font-size 16px */
  .input-field,
  .select-field,
  .textarea-field {
    font-size: 16px !important;
    min-height: 48px;
    padding: 12px 14px;
  }

  .textarea-field {
    min-height: 96px;
  }

  /* Floating Trigger on Mobile */
  .floating-vip-trigger {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
    padding: 12px 16px;
    font-size: 0.76rem;
  }

  .floating-vip-trigger span {
    display: inline; /* Keep text visible on modern smartphones */
  }

  /* FAQ Accordion Mobile */
  .faq-question-btn {
    padding: 18px 20px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 50px 16px calc(30px + env(safe-area-inset-bottom, 0px)) 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Feedback Modal Mobile */
  .success-modal {
    padding: 32px 20px;
    max-width: 92%;
    border-radius: var(--radius-lg);
  }

  .success-modal h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 380px) {
  .hero-headline {
    font-size: 1.9rem;
  }

  .stat-num {
    font-size: 1.15rem;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .category-radio-label {
    font-size: 0.7rem;
  }
}

