/* ═══════ VEBLIO HOTELS — Awwward Style ═══════ */

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

:root {
  --gold: #c9a96e;
  --gold-dark: #b08d57;
  --gold-light: #dfc99a;
  --dark: #0a0a0f;
  --dark-card: #141419;
  --dark-border: #1e1e28;
  --text: #e8e4dc;
  --text-dim: rgba(232,228,220,0.6);
  --text-faint: rgba(232,228,220,0.4);
  --green: #4ade80;
  --red: #dc6060;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.3); border-radius: 3px; }

.font-serif { font-family: 'Cormorant Garamond', Georgia, serif; }

/* Glass */
.glass {
  background: rgba(20, 20, 25, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,169,110,0.1);
}
.glass-card {
  background: rgba(20, 20, 25, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.08);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.glass-card:hover {
  border-color: rgba(201,169,110,0.2);
}

/* Gold gradient text */
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tag */
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(201,169,110,0.2);
  background: rgba(201,169,110,0.08);
  color: var(--gold);
}
.tag-red {
  border-color: rgba(220,96,96,0.2);
  background: rgba(220,96,96,0.08);
  color: var(--red);
}
.tag-green {
  border-color: rgba(74,222,128,0.2);
  background: rgba(74,222,128,0.08);
  color: var(--green);
}

/* Section */
section { padding: 100px 24px; }
h1, h2, h3 { letter-spacing: -0.01em; }
section:nth-child(even) {
  background: linear-gradient(180deg, rgba(201,169,110,0.03) 0%, transparent 100%);
}
.container { max-width: 1100px; margin: 0 auto; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  text-decoration: none; color: white;
}
.navbar-logo span { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.navbar-links { display: flex; gap: 32px; list-style: none; }
.navbar-links a {
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem;
  transition: color 0.3s;
}
.navbar-links a:hover { color: var(--gold); }
.lang-switch { display: flex; gap: 4px; }
.lang-btn {
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 0.7rem; font-weight: 600; padding: 4px 8px;
  cursor: pointer; border-radius: 6px; transition: all 0.2s;
}
.lang-btn.active { background: rgba(201,169,110,0.2); color: var(--gold); }
.lang-btn:hover { color: white; }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; padding-top: 100px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.08) 0%, transparent 60%);
}
.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.25;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,15,0.4) 0%, rgba(10,10,15,0.85) 70%, var(--dark) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
  animation: pulse 4s ease-in-out infinite alternate;
}
.hero-orb-1 { top: 20%; left: 20%; width: 300px; height: 300px; background: rgba(201,169,110,0.06); }
.hero-orb-2 { bottom: 20%; right: 20%; width: 200px; height: 200px; background: rgba(201,169,110,0.04); }
@keyframes pulse { from { transform: scale(1); } to { transform: scale(1.1); } }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 24px;
  position: relative; z-index: 1;
}
.hero p {
  font-size: 1.15rem; color: var(--text-dim); max-width: 600px;
  margin: 0 auto 40px; position: relative; z-index: 1;
}
.hero-cta {
  display: inline-block; padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 600; font-size: 1rem;
  border-radius: 12px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; z-index: 1;
}
.hero-cta:hover { transform: scale(1.05); box-shadow: 0 20px 40px rgba(201,169,110,0.3); }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: 700px; margin: 60px auto 0; position: relative; z-index: 1;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--gold);
}
.stat-label {
  font-size: 0.8rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}

/* Problem */
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.problem-card { padding: 32px; }
.problem-card .icon { font-size: 2rem; margin-bottom: 12px; }
.problem-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500; margin-bottom: 8px;
  color: white; transition: color 0.3s;
}
.problem-card:hover h3 { color: var(--red); }
.problem-card p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.7; }

/* Solution */
.solution-steps { display: flex; flex-direction: column; gap: 16px; }
.solution-step {
  display: flex; gap: 24px; align-items: flex-start; padding: 32px;
}
.solution-step .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: rgba(201,169,110,0.3); font-weight: 300;
  min-width: 60px; text-align: right;
}
.solution-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500; margin-bottom: 8px;
  color: white; transition: color 0.3s;
}
.solution-step:hover h3 { color: var(--gold); }
.solution-step p { font-size: 0.95rem; color: var(--text-dim); line-height: 1.7; }

/* Features */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.feature-card { padding: 24px; text-align: center; transition: transform 0.3s; }
.feature-card:hover { transform: scale(1.02); }
.feature-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
.feature-card h3 {
  font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: white;
  transition: color 0.3s;
}
.feature-card:hover h3 { color: var(--gold); }
.feature-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

/* Demo */
.demo-card { max-width: 420px; margin: 0 auto; overflow: hidden; }
.demo-header {
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 12px;
}
.demo-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.demo-name { font-weight: 600; font-size: 0.85rem; }
.demo-online { font-size: 0.7rem; color: var(--green); }
.demo-messages { padding: 20px; min-height: 200px; }
.msg { display: flex; gap: 8px; margin-bottom: 16px; }
.msg.user { justify-content: flex-end; }
.msg-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); flex-shrink: 0;
}
.msg-bubble {
  padding: 12px 16px; border-radius: 16px; font-size: 0.85rem;
  line-height: 1.5; max-width: 80%; color: var(--text);
}
.msg:not(.user) .msg-bubble {
  background: var(--dark-card); border-radius: 4px 16px 16px 16px;
}
.msg.user .msg-bubble {
  background: rgba(201,169,110,0.2); border-radius: 16px 4px 16px 16px;
}
.msg-bubble strong { color: var(--gold); }
.demo-cta {
  padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center;
}
.demo-cta a {
  display: block; padding: 12px; text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 600; font-size: 0.85rem;
  border-radius: 12px; text-decoration: none; transition: transform 0.2s;
}
.demo-cta a:hover { transform: scale(1.02); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.pricing-card { padding: 32px; position: relative; }
.pricing-card.popular {
  background: linear-gradient(180deg, rgba(201,169,110,0.1), rgba(20,20,25,0.6));
  border: 2px solid rgba(201,169,110,0.3);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; background: var(--gold); color: var(--dark);
  font-size: 0.7rem; font-weight: 700; border-radius: 100px;
}
.pricing-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; margin-bottom: 4px;
}
.pricing-card .desc { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 20px; }
.pricing-section-label { font-size: 0.65rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.pricing-setup { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 16px; }
.pricing-monthly { display: flex; align-items: baseline; gap: 4px; margin-bottom: 20px; }
.pricing-monthly .amount { font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.pricing-monthly .period { font-size: 0.85rem; color: var(--text-faint); }
.pricing-list { list-style: none; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; margin-bottom: 24px; }
.pricing-list li { font-size: 0.9rem; color: var(--text-dim); padding: 4px 0; display: flex; gap: 8px; }
.pricing-list li::before { content: '✓'; color: var(--gold); font-weight: 600; }
.pricing-btn {
  display: block; width: 100%; padding: 12px; text-align: center;
  border-radius: 12px; font-weight: 600; font-size: 0.85rem;
  text-decoration: none; transition: all 0.2s;
}
.pricing-btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}
.pricing-btn.secondary {
  border: 1px solid rgba(201,169,110,0.3); color: var(--gold);
}
.pricing-btn:hover { transform: scale(1.02); }

/* ROI */
.roi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; text-align: center; }
.roi-card { padding: 32px; }
.roi-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; margin-bottom: 8px;
}
.roi-value.green { color: var(--green); }
.roi-value.gold { color: var(--gold); }
.roi-value.blue { color: #60a5fa; }
.roi-label { font-weight: 500; margin-bottom: 4px; }
.roi-desc { font-size: 0.9rem; color: var(--text-dim); }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(201,169,110,0.08); border-radius: 12px;
  margin-bottom: 8px; overflow: hidden;
  background: rgba(20,20,25,0.6); backdrop-filter: blur(12px);
}
.faq-q {
  padding: 16px 20px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 500; font-size: 0.9rem;
  transition: background 0.2s; user-select: none;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q .plus { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 20px; font-size: 0.95rem; color: var(--text-dim); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 16px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(201,169,110,0.08); background: rgba(20,20,25,0.6);
  transition: border-color 0.3s, transform 0.3s; cursor: pointer;
  text-decoration: none; color: inherit;
}
.blog-card:hover { border-color: rgba(201,169,110,0.2); transform: scale(1.01); }
.blog-thumb {
  height: 160px;
  background: linear-gradient(135deg, rgba(201,169,110,0.1), var(--dark-card));
}
.blog-body { padding: 20px; }
.blog-tag {
  font-size: 0.65rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500; margin-bottom: 8px; color: white;
  transition: color 0.3s;
}
.blog-card:hover h3 { color: var(--gold); }
.blog-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

/* CTA */
.cta-section { text-align: center; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 12px; font-weight: 600;
  font-size: 1rem; text-decoration: none; transition: all 0.2s;
}
.cta-btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}
.cta-btn.secondary {
  border: 1px solid rgba(201,169,110,0.3); color: var(--gold);
}
.cta-btn:hover { transform: scale(1.05); }

/* Footer */
.footer {
  padding: 40px 24px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--text-faint); text-decoration: none; font-size: 0.8rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: var(--text-dim); text-align: center; margin-top: 24px; }

/* ═══════ CHATBOT ═══════ */
.chat-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--dark));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(201,169,110,0.3);
  transition: transform 0.3s;
  color: var(--dark); font-size: 1.2rem;
}
.chat-toggle:hover { transform: scale(1.1); }

.chat-window {
  position: fixed; bottom: 96px; right: 24px; z-index: 200;
  width: 360px; max-width: calc(100vw - 48px);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
  background: var(--dark-card);
  border: 1px solid rgba(201,169,110,0.1);
}
.chat-window.open { display: block; }

.chat-header {
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 12px;
}
.chat-messages {
  height: 350px; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.chat-msg { display: flex; gap: 8px; }
.chat-msg.user { justify-content: flex-end; }
.chat-msg-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  flex-shrink: 0;
}
.chat-bubble {
  padding: 12px 16px; border-radius: 16px; font-size: 0.85rem;
  line-height: 1.5; max-width: 80%; white-space: pre-line;
}
.chat-msg:not(.user) .chat-bubble {
  background: var(--dark-card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px 16px 16px 16px;
  line-height: 1.7; font-size: 0.9rem;
}
.chat-msg:not(.user) .chat-bubble strong { color: var(--gold); font-weight: 600; }
.chat-msg:not(.user) .chat-bubble em { color: var(--text-dim); font-style: normal; font-size: 0.82rem; }
.chat-msg:not(.user) .chat-bubble .chat-section { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.06); }
.chat-msg:not(.user) .chat-bubble .chat-label { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 6px; }
.chat-msg:not(.user) .chat-bubble .chat-price { display: flex; justify-content: space-between; padding: 4px 0; font-size: 0.85rem; }
.chat-msg:not(.user) .chat-bubble .chat-price .amt { color: var(--gold); font-weight: 600; }
.chat-msg:not(.user) .chat-bubble ul { margin: 6px 0 6px 16px; padding: 0; list-style: none; }
.chat-msg:not(.user) .chat-bubble ul li { padding: 2px 0; font-size: 0.85rem; }
.chat-msg:not(.user) .chat-bubble ul li::before { content: "·"; color: var(--gold); margin-right: 8px; font-weight: 700; }
.chat-msg.user .chat-bubble {
  background: rgba(201,169,110,0.2);
  border-radius: 16px 4px 16px 16px;
}

.typing { display: flex; gap: 4px; padding: 12px 16px; }
.typing span {
  width: 6px; height: 6px; background: rgba(201,169,110,0.4);
  border-radius: 50%; animation: bounce 1s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

.chat-input {
  padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; gap: 8px;
}
.chat-input input {
  flex: 1; background: var(--dark); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 10px 16px; font-size: 0.85rem;
  color: white; outline: none;
}
.chat-input input::placeholder { color: rgba(255,255,255,0.3); }
.chat-input input:focus { border-color: rgba(201,169,110,0.3); }
.chat-send {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.chat-send:hover { transform: scale(1.05); }
.chat-send svg { width: 16px; height: 16px; }

.icon-svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ═══════ ANIMATIONS ═══════ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.popular { transform: none; }
  .roi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}
