@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&display=swap');

:root {
  --primary-gold: #C5A880; /* Elegant Matte Champagne Gold */
  --highlight-gold: #EADCB6;
  --bg-dark: #0a0a09; 
  --bg-glass: rgba(15, 15, 15, 0.85); /* Dark transparent for cards */
  --border-gold: rgba(197, 168, 128, 0.3);
  --text-main: #F4F4F4;
  --text-muted: #9E9E9E;
  --line-color: #06C755;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at 50% 0%, #171512 0%, #0a0a09 100%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: 'Kanit', sans-serif;
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  
  /* Ultimate Global Mobile Font Support */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* --- Premium Cinematic Ambient Lighting --- */
body::before, body::after {
    content: ''; position: fixed; border-radius: 50%; filter: blur(150px);
    z-index: -999; opacity: 0.12; pointer-events: none;
    animation: driftAuroras 25s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
body::before {
    width: 60vw; height: 60vw; min-width: 400px; min-height: 400px;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    top: -10vw; left: -10vw;
}
body::after {
    width: 50vw; height: 50vw; min-width: 300px; min-height: 300px;
    background: radial-gradient(circle, #EADCB6 0%, transparent 70%);
    bottom: -10vw; right: -10vw;
    animation-delay: -12.5s;
    animation-direction: alternate-reverse;
}
@keyframes driftAuroras {
    0% { transform: translate(0, 0) scale(1); opacity: 0.08; }
    50% { transform: translate(8vw, 5vh) scale(1.1); opacity: 0.15; }
    100% { transform: translate(-8vw, -5vh) scale(0.9); opacity: 0.08; }
}

/* Elegant Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Kanit', sans-serif;
  color: var(--text-main);
  letter-spacing: 2px;
  font-weight: 500;
}

.gold-text {
  color: var(--primary-gold) !important;
}

a {
  text-decoration: none;
  color: var(--primary-gold);
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar styling */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 9, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0; /* Minimized padding for sleeker sticky header */
  background: transparent;
  border: none;
}

.nav-brand {
  font-family: 'Kanit', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-main);
  display: flex;
  align-items: center;
  position: relative;
}

.nav-brand img {
  animation: elegantFloatAura 6s ease-in-out infinite;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
}

.nav-brand:hover img {
  transform: scale(1.05) translateY(-2px);
  filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.7)) brightness(1.2) contrast(1.1);
}

@keyframes elegantFloatAura {
  0%, 100% { 
    transform: translateY(0px); 
    filter: drop-shadow(0 0 10px rgba(197, 168, 128, 0.2)) brightness(1); 
  }
  50% { 
    transform: translateY(-6px); 
    filter: drop-shadow(0 5px 25px rgba(197, 168, 128, 0.5)) brightness(1.1); 
  }
}

.nav-brand span {
  color: var(--primary-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu li a {
  color: var(--text-main);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary-gold);
}

/* Elegant Buttons */
.btn {
  display: inline-block;
  vertical-align: middle;
  padding: 12px 35px;
  border-radius: 30px; /* Pillow shape like omakase site if needed, or simple rounded slightly */
  font-family: 'Kanit', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: #000 !important;
  border: 1px solid var(--primary-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: elegantShine 3.5s infinite;
}

@keyframes elegantShine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-primary:hover {
  background-color: var(--highlight-gold);
  border-color: var(--highlight-gold);
  box-shadow: 0 0 25px rgba(197, 168, 128, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main) !important;
  border: 1px solid var(--border-gold);
}
.btn-outline:hover {
  border-color: var(--highlight-gold);
  color: var(--highlight-gold) !important;
  box-shadow: 0 0 20px rgba(197, 168, 128, 0.3), inset 0 0 15px rgba(197, 168, 128, 0.1);
  transform: translateY(-2px);
}

.btn-line {
  background-color: var(--line-color);
  color: #fff !important;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  padding: 14px 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
}

.btn-line:hover {
  background-color: #05A346;
}

/* Base Card Style matching Omakase */
.premium-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.premium-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 168, 128, 0.6);
  box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 30px rgba(197, 168, 128, 0.1);
}

.dual-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
@media (max-width: 650px) {
    .dual-btn-group {
        flex-wrap: nowrap;
        gap: 10px;
    }
    .dual-btn-group .btn {
        flex: 1;
        padding: 18px 5px !important;
        font-size: 13px !important;
        white-space: nowrap;
        text-align: center;
        letter-spacing: 1px;
        min-width: 0;
    }
}

/* Floating Component with Ripple */
.floating-line {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--line-color);
  color: white !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  z-index: 999;
  transition: transform 0.3s ease;
  animation: floatBounce 4s infinite ease-in-out;
}

.floating-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  border: 2px solid var(--line-color);
  animation: ripple 2s infinite ease-out;
  z-index: -1;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.floating-line:hover {
  transform: scale(1.1) rotate(10deg);
  animation: none;
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  font-size: 24px;
  color: var(--primary-gold);
  cursor: pointer;
  z-index: 10001; /* Ensure above active nav-menu */
  position: relative;
  transition: all 0.3s ease;
}

.mobile-toggle.active {
  background: rgba(10, 10, 9, 0.8);
  color: var(--primary-gold);
  border: 1px solid rgba(197, 168, 128, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.mobile-toggle.active i::before {
  content: "\f00d"; /* Change to X */
}

/* Utilities */
.mobile-only {
  display: none !important;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border-gold);
  margin-top: 80px;
  background: #050505;
}
footer p {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-only {
    display: block !important;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, rgba(10,10,9,0.98) 0%, rgba(5,5,5,0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 35px;
    z-index: 10000;
    text-align: center;
    border-bottom: none;
    
    /* Reveal Animation */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.98);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex !important;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-menu li {
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease forwards;
  }
  
  .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; transform: translateY(0); opacity: 1; }
  .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; transform: translateY(0); opacity: 1; }
  .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; transform: translateY(0); opacity: 1; }
  .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; transform: translateY(0); opacity: 1; }
  .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; transform: translateY(0); opacity: 1; }

  .nav-menu li a {
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    letter-spacing: 5px;
    font-weight: 400;
    color: #E0E0E0;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
    transition: color 0.3s ease;
  }
  
  .nav-menu li a.active, .nav-menu li a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 15px rgba(197,168,128,0.4);
  }

  .mobile-book-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold) !important;
    padding: 16px 45px;
    font-family: 'Kanit', sans-serif;
    font-size: 14px !important;
    font-weight: 500;
    letter-spacing: 3px !important;
    text-transform: uppercase;
    border-radius: 50px;
    margin-top: 15px;
    box-shadow: 0 5px 20px rgba(197, 168, 128, 0.15);
    transition: all 0.3s ease;
  }

  .mobile-book-btn:active {
    background: var(--primary-gold);
    color: #000 !important;
  }
  
  .mobile-toggle {
    display: flex; /* Flex format for the red circle centering */
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: 15px;
    width: 44px;
    height: 44px; /* Set dimensions to always match the active circle state smoothly */
    border-radius: 50%;
  }
}

/* Global Language Toggle Button */
.global-lang-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--border-gold);
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(10,10,9,0.5);
    backdrop-filter: blur(5px);
    z-index: 1001;
    font-family: 'Kanit', sans-serif;
    transition: all 0.3s ease;
}
.global-lang-btn:hover {
    background: var(--primary-gold);
    color: #000 !important;
}
@media (max-width: 768px) {
    .global-lang-btn {
        right: 65px; /* Make room for hamburger menu */
    }
}

/* Age Gate Speakeasy Modal */
.age-gate-modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(5,5,5,0.98); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    opacity: 1; transition: opacity 0.5s ease;
}
.age-gate-content {
    text-align: center; max-width: 450px; width: 90%; padding: 40px 30px;
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(5,5,5,0.95) 100%);
    border: 1px solid rgba(197, 168, 128, 0.3); border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(255,255,255,0.05);
    transform: translateY(20px); animation: gatePop 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.age-gate-logo { height: 90px; object-fit: contain; margin-bottom: 20px; mix-blend-mode: screen; filter: drop-shadow(0 0 10px rgba(197, 168, 128, 0.3)); }
@keyframes gatePop { to { transform: translateY(0); } }

/* Trust & Privacy Ribbon */
.trust-ribbon {
    background: linear-gradient(90deg, rgba(5,5,5,0.8) 0%, rgba(20,20,20,0.8) 50%, rgba(5,5,5,0.8) 100%);
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    padding: 40px 0; margin-top: -30px; position: relative; z-index: 5;
    backdrop-filter: blur(10px);
}
.trust-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
.trust-item { flex: 1; min-width: 250px; text-align: center; padding: 10px 20px; }
.trust-icon { 
    font-size: 32px; color: var(--primary-gold); margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(197, 168, 128, 0.3));
}
.trust-item h4 { font-size: 16px; margin-bottom: 8px; font-weight: 500; letter-spacing: 2px; }
.trust-item p { font-size: 13px; color: var(--text-muted); font-weight: 300; line-height: 1.6; }
@media (max-width: 768px) {
    .trust-ribbon { padding: 30px 0; margin-top: 0; }
    .trust-item { min-width: 100%; margin-bottom: 5px; padding: 0 10px; }
    .trust-icon { margin-bottom: 10px; font-size: 28px; }
}

/* How It Works Steps */
.steps-grid {
    display: flex; justify-content: space-between; gap: 20px;
    margin-top: 50px; position: relative;
}
.steps-grid::before {
    content: ''; position: absolute; top: 30px; left: 50px; right: 50px;
    height: 1px; background: rgba(197, 168, 128, 0.2); z-index: 1;
}
.step-card { flex: 1; text-align: center; position: relative; z-index: 2; padding: 0 15px; }
.step-number {
    width: 60px; height: 60px; margin: 0 auto 20px;
    background: #000; border: 1px solid var(--primary-gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Kanit', sans-serif; font-size: 24px; color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.2);
}
.step-card h3 { font-size: 16px; margin-bottom: 10px; font-weight: 500; letter-spacing: 1px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 768px) {
    .steps-grid { flex-direction: column; gap: 40px; }
    .steps-grid::before {
        top: 0; bottom: 0; left: 50%; width: 1px; height: 100%; right: auto; margin-left: -0.5px;
    }
}

/* Service Locations */
.locations-grid { display: flex; gap: 30px; margin-top: 50px; }
.location-card {
    flex: 1; border-radius: 20px; overflow: hidden; position: relative;
    border: 1px solid rgba(197, 168, 128, 0.15); height: 320px;
    background-size: cover; background-position: center; background-color: #111;
    display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
    text-align: center; padding: 40px;
    transition: all 0.5s ease;
}
.location-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1; transition: background 0.5s ease;
}
.location-card:hover .location-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.location-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(197, 168, 128, 0.1);
}
.location-info {
    position: relative; z-index: 2; width: 100%;
    background: none; padding: 0;
    text-align: center;
}
.location-info h3 { font-size: 26px; color: #fff; margin-bottom: 15px; font-family: 'Kanit', sans-serif; letter-spacing: 3px; }
.location-info p { font-size: 14px; color: #a0a0a0; line-height: 1.6; }

@media (max-width: 768px) {
    .locations-grid { flex-direction: column; }
    .location-card { height: auto; min-height: 280px; width: 100%; flex: none; display: flex; }
    .location-info h3 { font-size: 24px; }
}

/* Omakase Matchmaking */
.omakase-banner {
    background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.8) 100%);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 20px; padding: 50px 30px; text-align: center;
    position: relative; overflow: hidden;
}
.omakase-banner::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top, rgba(197, 168, 128, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.omakase-icon {
    font-size: 40px; color: var(--primary-gold); margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(197, 168, 128, 0.4));
}
.omakase-steps { display: flex; justify-content: center; gap: 40px; margin-top: 30px; }
.o-step { flex: 1; max-width: 250px; }
.o-step i { 
    font-size: 28px; color: #FFF; margin-bottom: 15px; 
    background: rgba(197, 168, 128, 0.2); width: 60px; height: 60px; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 15px; border: 1px solid rgba(197,168,128,0.3); 
}
.o-step h4 { font-size: 16px; color: var(--primary-gold); margin-bottom: 10px; font-weight: 500; }
.o-step p { font-size: 13px; color: #a0a0a0; line-height: 1.6; }

@media (max-width: 768px) {
    .omakase-steps { flex-direction: column; gap: 30px; align-items: center; }
    .omakase-banner { padding: 40px 20px; }
}

/* Rates & Durations */
.rates-grid { display: flex; gap: 30px; margin-top: 50px; }
.rate-card {
    flex: 1; background: rgba(5,5,5,0.6); border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 16px; padding: 40px 30px; text-align: center; position: relative;
    transition: all 0.4s ease;
}
.rate-card.highlight {
    background: linear-gradient(180deg, rgba(20,15,5,0.9) 0%, rgba(5,5,5,0.95) 100%);
    border-color: var(--primary-gold); transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(197, 168, 128, 0.15);
}
.rate-card:hover { transform: translateY(-10px); border-color: rgba(197, 168, 128, 0.4); }
.rate-card.highlight:hover { transform: translateY(-15px); }
.rate-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary-gold); color: #000; font-size: 11px; font-weight: bold;
    padding: 5px 15px; border-radius: 20px; letter-spacing: 1px;
}
.rate-time { font-size: 14px; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 10px; }
.rate-card h3 { font-size: 20px; color: #FFF; margin-bottom: 20px; font-family: 'Kanit', sans-serif; }
.rate-price { font-size: 24px; color: var(--primary-gold); font-weight: bold; margin-bottom: 20px; text-shadow: 0 0 10px rgba(197, 168, 128, 0.4); }
.rate-card p { font-size: 14px; color: #a0a0a0; line-height: 1.6; }

@media (max-width: 768px) {
    .rates-grid { flex-direction: column; gap: 40px; }
    .rate-card.highlight { transform: none; }
    .rate-card.highlight:hover { transform: translateY(-5px); }
}


/* FAQ Accordion - Floating Glassmorphism Redesign */
.faq-section { 
    padding: 100px 0; 
    background: radial-gradient(circle at center, #151515 0%, #050505 100%); 
}
.faq-accordion { 
    display: flex; flex-direction: column; gap: 20px; 
    counter-reset: faq-counter;
}
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 168, 128, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.faq-item.active {
    background: linear-gradient(145deg, rgba(20,15,5,0.95) 0%, rgba(5,5,5,0.95) 100%);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(197, 168, 128, 0.15);
}
.faq-question {
    width: 100%; text-align: left; padding: 25px 30px; border: none; background: transparent;
    color: var(--text-main); font-family: 'Kanit', sans-serif;
    font-size: 16px; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; transition: all 0.4s ease;
}
.faq-question span {
    display: flex; align-items: center;
}
.faq-question span::before {
    counter-increment: faq-counter;
    content: "0" counter(faq-counter) ".";
    color: var(--primary-gold);
    font-family: 'Kanit', sans-serif;
    font-size: 20px; font-style: italic;
    margin-right: 15px; opacity: 0.8;
}
.faq-question i {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    border: 1px solid rgba(197, 168, 128, 0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-gold); font-size: 12px;
    background: rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover .faq-question i { 
    border-color: var(--primary-gold); 
    background: rgba(197, 168, 128, 0.1); 
    transform: scale(1.1);
}
.faq-item.active .faq-question i { 
    transform: rotate(180deg); 
    background: var(--primary-gold); 
    color: #000;
    border-color: var(--primary-gold);
}
.faq-item.active .faq-question { color: var(--primary-gold); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0; padding: 0 30px;
}
.faq-answer p {
    padding-bottom: 25px; margin: 0; color: #ccc; font-size: 14.5px; line-height: 1.8;
    font-weight: 300; padding-left: 38px;
}
.faq-item.active .faq-answer { max-height: 300px; opacity: 1; }

@media (max-width: 768px) {
    .faq-question { padding: 20px; font-size: 15px; }
    .faq-answer { padding: 0 20px; }
    .faq-answer p { padding-left: 0; margin-top: 10px; }
}

/* Floating LINE Widget */
.floating-line {
    position: fixed; bottom: 30px; right: 30px; z-index: 9999;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #00C300 0%, #009900 100%);
    color: #FFF; font-size: 35px; text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 195, 0, 0.4);
    animation: pulseLine 2.5s infinite;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255,255,255,0.2);
}
.floating-line:hover {
    transform: translateY(-5px) scale(1.1); color: #FFF;
}
@keyframes pulseLine {
    0% { box-shadow: 0 0 0 0 rgba(0, 195, 0, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(0, 195, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 195, 0, 0); }
}

@media (max-width: 768px) {
    .floating-line { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 30px; }
}

/* =====================================================================
   ADDITIONAL HOMEPAGE SECTIONS (ABOUT & REVIEWS)
   ===================================================================== */

/* Home About Us Section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrapper { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid rgba(197, 168, 128, 0.2); box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85); transition: transform 0.5s ease; }
.about-img-wrapper:hover img { transform: scale(1.05); filter: brightness(1); }
.about-img-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 60px 30px 20px; background: linear-gradient(to top, rgba(10,10,9,0.95) 0%, transparent 100%); pointer-events: none;}
.about-content h2 { font-size: 36px; margin-bottom: 25px; font-family: 'Kanit', sans-serif; }
.about-content p { color: #ddd; font-size: 16px; line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.contact-highlight { background: rgba(197, 168, 128, 0.05); border-left: 3px solid var(--primary-gold); padding: 20px 25px; border-radius: 0 8px 8px 0; }
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-content h2 { font-size: 28px; }
}

/* Home Reviews Section reusing VIP Testimonials Grid */
.home-reviews-section { padding: 100px 0; background: #050505; border-top: 1px solid rgba(197, 168, 128, 0.1); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; max-width: 1200px; margin: 0 auto; }
.testimonial-card { background: rgba(15, 15, 15, 0.7); border: 1px solid var(--border-gold); border-radius: 12px; padding: 40px 30px; position: relative; backdrop-filter: blur(10px); transition: transform 0.4s ease, border-color 0.4s ease; text-align: center; }
.testimonial-card:hover { transform: translateY(-8px); border-color: var(--primary-gold); box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.quote-icon { font-size: 30px; color: rgba(197, 168, 128, 0.2); position: absolute; top: 25px; left: 30px; }
.stars { color: var(--primary-gold); font-size: 14px; margin-bottom: 20px; letter-spacing: 2px; }
.review-text { color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.8; font-weight: 300; margin-bottom: 25px; font-style: italic; }
.reviewer { color: var(--primary-gold); font-family: 'Kanit', sans-serif; font-size: 16px; letter-spacing: 1px; text-transform: uppercase; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   NEW SERVICES / PRICING SECTION (VIBEDAYBKK STYLE)
   ===================================================================== */
.services-intro-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}
.services-intro-block h2 {
    font-size: 3rem;
    font-family: 'Kanit', sans-serif;
    color: var(--highlight-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(197, 168, 128, 0.2);
}
.intro-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.intro-icon {
    color: var(--primary-gold);
    font-size: 35px;
    animation: float 4s ease-in-out infinite;
}
.intro-icon:nth-child(3) { animation-delay: 2s; }
.intro-text {
    flex: 1;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}
.intro-text strong {
    color: var(--highlight-gold);
    font-weight: 500;
}
.contact-all-text {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

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

/* Asymmetric Pricing Grid layout */
.pricing-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 0 20px 100px;
}
.pricing-card-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(197, 168, 128, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
/* For the reverse layout card */
.pricing-card-wrap.reverse {
    direction: ltr; /* Keeping direction normal, we'll swap column order using grid */
}
.pricing-card-wrap.reverse .poster-col {
    order: 2;
}
.pricing-card-wrap.reverse .text-col {
    order: 1;
}

.poster-col {
    position: relative;
    height: 100%;
    min-height: 600px;
    display: flex;
}
.poster-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.poster-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}
.pricing-card-wrap.reverse .poster-overlay {
    background: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
}

.vertical-text-brand {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%) rotate(-90deg);
    color: rgba(255,255,255,0.05);
    font-size: 80px;
    font-weight: 700;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
    letter-spacing: 5px;
}
.pricing-card-wrap.reverse .vertical-text-brand {
    left: auto;
    right: 20px;
    transform: translateY(-50%) rotate(90deg);
}

.poster-gradients {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 65%;
    height: 100%;
    padding: 40px 0;
}
.pricing-card-wrap.reverse .poster-gradients {
    margin-left: auto; /* Align to right side */
}

/* Top title inside poster */
.poster-title-box {
    padding: 0 40px 30px;
}
.poster-title-box h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.service-glass-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    margin-bottom: 15px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(197, 168, 128, 0.1),
        transparent
    );
    transition: 0.5s;
}

.service-glass-card:hover::before {
    left: 100%;
}

.service-glass-card:hover {
    transform: scale(1.02) translateX(8px);
    border-color: rgba(197, 168, 128, 0.6);
    background: rgba(20, 20, 20, 0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pricing-card-wrap.reverse .service-glass-card:hover {
    transform: scale(1.02) translateX(-8px);
}

.card-icon {
    font-size: 28px;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 5px rgba(197, 168, 128, 0.4));
    min-width: 40px;
    text-align: center;
}

.card-content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Right side Text Col */
.text-col {
    padding: 50px;
}
.text-col h3 {
    color: var(--highlight-gold);
    font-size: 32px;
    margin-bottom: 35px;
    font-weight: 600;
}
.rate-list {
    list-style: none;
    margin-bottom: 40px;
}
.rate-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
}
.rate-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-gold);
    box-shadow: 0 0 8px var(--primary-gold);
}
.btn-contact-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gold);
    color: #000;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}
.btn-contact-solid:hover {
    background: var(--highlight-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(197, 168, 128, 0.4);
    color: #000;
}

/* Mobile Breakpoints */
@media (max-width: 1024px) {
    .poster-gradients { width: 85%; }
    .vertical-text-brand { display: none; }
    .text-col h3 { font-size: 26px; }
    .rate-list li { font-size: 16px; }
}
@media (max-width: 768px) {
    .pricing-card-wrap, 
    .pricing-card-wrap.reverse {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .pricing-card-wrap.reverse .poster-col { order: 1; }
    .pricing-card-wrap.reverse .text-col { order: 2; }
    
    .poster-col { min-height: 500px; height: 500px; border-bottom: 1px solid var(--border-gold); }
    .poster-gradients { width: 100%; padding: 0; }
    
    /* Ensure gradients on mobile fill entire width */
    .poster-title-box { padding: 40px 20px 20px; }
    .gradient-box { padding: 20px; }
    .text-col { padding: 40px 20px; }
}

/* Global Social Icons */
.social-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--primary-gold);
    border: 1px solid var(--border-gold);
    transition: all 0.3s ease;
    background: var(--bg-glass);
    text-decoration: none;
}

.social-icon:hover {
    border-color: var(--primary-gold);
    color: var(--text-main);
    background: rgba(197, 168, 128, 0.1);
    transform: translateY(-3px);
}

/* Luxury Review Gallery */
.review-gallery-section {
    position: relative;
    padding-bottom: 80px;
}

.review-gallery-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    width: 60%;
    height: 100%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Gold Dust Particles */
.gold-dust-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 50; /* Ensure it's above almost everything */
}

.particle {
    position: absolute;
    background: #fff;
    background: radial-gradient(circle, #fff 0%, #D4AF37 60%, rgba(212, 175, 55, 0) 100%);
    border-radius: 50%;
    opacity: 0;
    filter: blur(1px);
    box-shadow: 0 0 15px #D4AF37;
    animation: floatParticle var(--duration) linear infinite;
    animation-delay: var(--delay);
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(10px, -10px) scale(1.5);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x-move), var(--y-move)) scale(0.2);
        opacity: 0;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 8px;
    background: var(--bg-glass);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 0 30px rgba(197, 168, 128, 0.4);
    transform: translateY(-8px);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
}

.gallery-item:hover::after {
    left: 150%;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 1px solid var(--border-gold);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}
