/* style.css - QlickInn B2B SaaS Landing Page (Luxury Gold & Brown Edition) */

/* CSS Reset & Variables */
:root {
  --bg-main: #291e18; /* Warm dark brown resort branding */
  --bg-card: #2a1c18; /* Rich cocoa brown card background */
  --bg-card-hover: #36251f; /* Espresso brown hover state */
  --border-glow: rgba(212, 175, 55, 0.15); /* Soft gold border glow */

  --color-primary: #d4af37; /* Metallic Gold / Champagne */
  --color-secondary: #c5a880; /* Light Satin Brass */
  --color-accent: #aa7c11; /* Deep Bronze / Gold */
  --color-danger: #d9534f; /* Muted Crimson */
  --color-success: #a3b19b; /* Muted Luxury Sage Green */

  --text-main: #f7f4f2; /* Warm Alabaster / Cream */
  --text-muted: #bdaea6; /* Warm Sand / Muted Beige */
  --text-dark: #231b18; /* Deep Coffee Roast */

  --glass-bg: rgba(42, 28, 24, 0.8);
  --glass-border: rgba(212, 175, 55, 0.1);
  --glass-highlight: rgba(212, 175, 55, 0.04);

  --font-outfit: "Outfit", sans-serif;
  --font-inter: "Inter", sans-serif;

  --shadow-neon: 0 0 35px rgba(212, 175, 55, 0.18);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-inter);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Subtle Golden Grid Pattern Texture */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(212, 175, 55, 0.015) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(212, 175, 55, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

/* Background Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
}

.orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.4) 0%,
    rgba(212, 175, 55, 0) 70%
  );
  top: 5%;
  right: -50px;
  animation: floatOrb 10s ease-in-out infinite;
}

.orb-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(170, 124, 17, 0.3) 0%,
    rgba(170, 124, 17, 0) 70%
  );
  top: 35%;
  left: -100px;
  animation: floatOrb 12s ease-in-out infinite reverse;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(197, 168, 128, 0.2) 0%,
    rgba(197, 168, 128, 0) 70%
  );
  bottom: 10%;
  right: 10%;
  animation: floatOrb 8s ease-in-out infinite;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-outfit);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 60%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-secondary);
}

p {
  color: var(--text-muted);
}

.highlight {
  color: var(--color-primary);
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 50%,
    var(--color-accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6.5rem 0;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-primary) 50%,
    var(--color-secondary) 100%
  );
  color: #1a1310;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.4);
}

.btn-glow {
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  }
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-highlight);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
}

.btn-full-width {
  width: 100%;
}

/* Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(31, 21, 18, 0.85);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 2.2rem;
  color: var(--color-primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.logo-text {
  font-family: var(--font-outfit);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.03em;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  font-family: var(--font-outfit);
}

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

.nav-actions {
  display: flex;
  gap: 1rem;
}

/* Hero Section */
.hero-section {
  padding-top: 11rem;
  padding-bottom: 5rem;
}

.hero-section .hero-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr; /* Make visual side larger */
  gap: 3.5rem;
  align-items: center;
  max-width: 100%;
  margin: 0;
  padding-left: 1.5rem;
  padding-right: 10px; /* Only 10px margin on the right of the screen */
}

@media (min-width: 1200px) {
  .hero-section .hero-container {
    padding-left: calc((100vw - 1200px) / 2 + 1.5rem);
  }
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: var(--font-outfit);
}

.tagline span {
  font-size: 1.1rem;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
}

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

.stat-num {
  font-family: var(--font-outfit);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.hero-video-container {
  position: relative;
  width: 100%;
  max-width: 100%; /* Spans full width of the right column bleed */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px 0 0 16px; /* Curve left edges, flush with right screen edge */
  overflow: hidden;
  box-shadow: -10px 20px 45px rgba(0, 0, 0, 0.65);
  border: none;
  background: #000; /* Set container background to black to match video edges */
}

.hero-video-element {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: none;
  background: transparent;
}

/* Features Grid */
.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.section-header p {
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.25rem;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.card-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.card-icon-wrapper span {
  font-size: 1.8rem;
}

.feature-card h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
}

/* Simulator Wrapper Styling */
.simulator-section {
  background: rgba(21, 16, 13, 0.6);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 8rem 0; /* Increase padding to give 3D elements space */
  overflow: visible;
}

.simulator-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 2000px;
  transform-style: preserve-3d;
}

@media (min-width: 1200px) {
  .simulator-wrapper {
    margin-right: calc((100vw - 1200px) / -2 - 1.5rem + 10px);
    max-width: none;
    width: auto;
  }
}

@media (max-width: 1199px) and (min-width: 1025px) {
  .simulator-wrapper {
    margin-right: -1.5rem;
    max-width: none;
    width: auto;
  }
}

.simulator-panel {
  background: #110d0a;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* 3D Isometric View for Desktop screens */
@media (min-width: 1025px) {
  .guest-panel {
    border: 12px solid #1e1713;
    border-radius: 36px;
    transform: rotateX(15deg) rotateY(18deg) rotateZ(-6deg) translateZ(40px);
    box-shadow: -1px 1px 0px #2a201b, -2px 2px 0px #2a201b, -3px 3px 0px #2a201b,
      -4px 4px 0px #2a201b, -5px 5px 0px #2b201a, -6px 6px 0px #2b201a,
      -7px 7px 0px #2b201a, -8px 8px 0px #2b201a,
      -15px 15px 40px rgba(212, 175, 55, 0.12),
      /* Ambient gold shadow in dark */ -25px 25px 50px rgba(0, 0, 0, 0.65);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
      box-shadow 0.6s ease, border-color 0.6s ease;
  }

  /* Speaker notch / Dynamic Island for 3D Phone */
  .guest-panel::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #1e1713;
    border-radius: 0 0 10px 10px;
    z-index: 100;
  }

  .guest-panel:hover {
    transform: rotateX(2deg) rotateY(2deg) rotateZ(0deg) translateZ(80px)
      translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: -1px 1px 0px #d4af37, -2px 2px 0px #d4af37, -3px 3px 0px #d4af37,
      -4px 4px 0px #d4af37, -5px 5px 0px #d4af37,
      -15px 15px 45px rgba(212, 175, 55, 0.35),
      /* Brighter gold glow on hover */ -30px 30px 60px rgba(0, 0, 0, 0.75);
  }

  .admin-panel {
    border: 12px solid #1c1512;
    border-radius: 24px;
    transform: rotateX(15deg) rotateY(-14deg) rotateZ(4deg) translateZ(10px);
    box-shadow: 1px 1px 0px #2a201b, 2px 2px 0px #2a201b, 3px 3px 0px #2a201b,
      4px 4px 0px #2a201b, 5px 5px 0px #2b201a, 6px 6px 0px #2b201a,
      7px 7px 0px #2b201a, 8px 8px 0px #2b201a,
      0 0 45px rgba(212, 175, 55, 0.25),
      /* Gold ambient glow */ inset 0 0 30px rgba(212, 175, 55, 0.08),
      25px 25px 50px rgba(0, 0, 0, 0.65);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
      box-shadow 0.6s ease, border-color 0.6s ease;
  }

  /* Glare effect & digital grid overlay on Laptop screen */
  .admin-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 50%
      ),
      radial-gradient(
        circle at 50% 50%,
        rgba(212, 175, 55, 0.04) 0%,
        transparent 85%
      ),
      linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 20px 20px, 20px 20px;
    pointer-events: none;
    z-index: 50;
  }

  /* Laptop base */
  .admin-panel::after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 2%;
    width: 96%;
    height: 12px;
    background: #1c1512;
    border-radius: 0 0 16px 16px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.6), 0px 2px 0px #2c201a;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .admin-panel:hover {
    transform: rotateX(2deg) rotateY(-2deg) rotateZ(0deg) translateZ(50px)
      translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 1px 1px 0px #d4af37, 2px 2px 0px #d4af37, 3px 3px 0px #d4af37,
      4px 4px 0px #d4af37, 5px 5px 0px #d4af37,
      0 0 55px rgba(212, 175, 55, 0.45),
      /* Brighter gold glow on hover */ inset 0 0 35px rgba(212, 175, 55, 0.12),
      30px 30px 60px rgba(0, 0, 0, 0.75);
  }
}

/* Fallback for smaller screens */
@media (max-width: 1024px) {
  .guest-panel {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-gold);
  }

  .admin-panel {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-neon);
  }
}

.panel-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.01);
}

.panel-header h4 {
  font-size: 1.1rem;
  color: #fff;
  flex: 1;
}

.room-tag {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.badge-live {
  background: var(--color-danger);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Guest app details */
.guest-app-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 540px; /* Increased to fit footer buttons */
}

.guest-app-branding {
  text-align: center;
  background: linear-gradient(135deg, #271f1b, #15100d);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.guest-logo {
  font-family: var(--font-outfit);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.guest-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.guest-menu {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.guest-menu::-webkit-scrollbar,
.admin-queue::-webkit-scrollbar {
  width: 4px;
}
.guest-menu::-webkit-scrollbar-track,
.admin-queue::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
}
.guest-menu::-webkit-scrollbar-thumb,
.admin-queue::-webkit-scrollbar-thumb {
  background: var(--color-primary); /* Gold thumb */
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.55);
}

.menu-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.menu-item-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(212, 175, 55, 0.2); /* Clear gold tint border */
  padding: 0.62rem 0.85rem; /* Smaller padding */
  border-radius: 8px;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-item-card:hover {
  background: rgba(212, 175, 55, 0.03);
  border-color: var(--color-primary);
}

.menu-item-card.selected {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.menu-item-card span.material-symbols-outlined {
  font-size: 1.3rem; /* Smaller and nicer */
  color: var(--color-primary);
  background: rgba(212, 175, 55, 0.08); /* Nice gold background circle */
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: var(--transition-smooth);
}

.menu-item-card span.btn-danger {
  color: var(--color-danger);
  background: rgba(217, 83, 79, 0.08); /* Red background circle */
  border-color: rgba(217, 83, 79, 0.25);
}

.menu-item-card:hover span.material-symbols-outlined {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
}

.item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 0.2rem;
}

.item-name {
  color: #fff;
  font-size: 0.8rem; /* Smaller font */
  font-weight: 500;
}

.item-price {
  font-size: 0.72rem; /* Smaller font */
  color: var(--color-primary);
  margin-top: 1px;
}

.btn-action-add {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-action-add.btn-danger {
  background: var(--color-danger);
}

.btn-action-add:hover {
  transform: scale(1.1);
}

.guest-app-footer {
  border-top: 1px solid var(--glass-border);
  padding-top: 1rem;
  margin-top: 1rem;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.cart-summary strong {
  color: var(--color-primary);
}

#cart-item-price {
  color: var(--color-primary);
  font-weight: 600;
}

/* Admin Dashboard layout inside simulator */
.admin-app-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 540px; /* Increased to fit triage chart */
}

.admin-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.admin-stat-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(212, 175, 55, 0.25); /* Glow border */
  padding: 0.75rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.45),
    inset 0 0 10px rgba(212, 175, 55, 0.04);
}

.stat-card-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-card-val {
  font-family: var(--font-outfit);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.65); /* Lightning text shadow */
}

.admin-queue-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.queue-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.admin-queue {
  flex: 1;
  overflow-y: auto;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
}

.queue-row {
  display: grid;
  grid-template-columns: 80px 1fr 80px 80px 90px;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.8rem;
  transition: all 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
    background: rgba(212, 175, 55, 0.15);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.queue-row.new-ticket {
  animation: slideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.queue-cell-type {
  font-weight: 600;
}

.type-dining {
  color: #fbbf24;
}
.type-housekeeping {
  color: #c5a880;
}
.type-maintenance {
  color: #f87171;
}

.queue-cell-desc {
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.queue-cell-room {
  color: var(--text-muted);
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
}

.status-pending {
  background: rgba(217, 83, 79, 0.15);
  color: var(--color-danger);
}

.status-in-progress {
  background: rgba(170, 124, 17, 0.15);
  color: var(--color-primary);
}

.status-new {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-primary);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.btn-triage-resolve {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-triage-resolve:hover {
  background: var(--color-success);
  color: #1a1310;
  border-color: var(--color-success);
  font-weight: 600;
}

/* Pricing Section */
.pricing-section {
  position: relative;
}

.pricing-calculator {
  max-width: 900px;
  margin: 0 auto 5rem auto;
  background: var(--glass-bg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.label-row label {
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 1.05rem;
}

.val-display {
  color: var(--color-primary);
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 1.15rem;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: #1c1512;
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  transition: transform 0.1s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.toggle-wrapper {
  display: flex;
  background: #0f0b09;
  padding: 0.35rem;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}

.toggle-btn {
  flex: 1;
  padding: 0.6rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.toggle-btn.active {
  background: var(--color-accent);
  color: #fff;
}

.calc-outputs {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--glass-border);
  padding: 2.25rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.calc-outputs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-accent),
    var(--color-primary),
    var(--color-secondary)
  );
}

.quote-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.quote-price {
  font-family: var(--font-outfit);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.quote-price .period {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
}

.quote-desc {
  font-size: 0.85rem;
}

/* Pricing Grid Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  background: rgba(212, 175, 55, 0.03);
  position: relative;
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
  transform: translateY(-8px);
  border-color: var(--color-secondary);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--color-accent),
    var(--color-primary)
  );
  color: #1a1310;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.pricing-card-header {
  margin-bottom: 2rem;
}

.pricing-card-header h4 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pricing-card-header p {
  font-size: 0.9rem;
}

.price {
  font-family: var(--font-outfit);
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin: 1.25rem 0;
}

.price span {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.pricing-features li.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

.pricing-features li span.check {
  color: var(--color-success);
  font-size: 1.2rem;
}

.pricing-features li span.close {
  color: var(--color-danger);
  font-size: 1.2rem;
}

/* Accordion FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-outfit);
  color: #fff;
  font-size: 1.1rem;
}

.faq-question .arrow {
  transition: transform 0.3s ease;
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Contact / Demo Section */
.contact-section {
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, var(--bg-main) 0%, #060504 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.contact-info h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-weight: 500;
}

.meta-item span:first-child {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3rem;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  font-family: var(--font-outfit);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #110d0a;
  border: 1px solid var(--glass-border);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success-message {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  font-size: 4rem;
  color: var(--color-success);
  margin-bottom: 1.5rem;
}

.form-success-message h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

/* Footer styling */
.footer {
  background: #120c0a;
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 4rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
}

.footer-links-group {
  display: flex;
  gap: 5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: 2rem;
}

.footer-bottom-container p {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .tagline,
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .simulator-wrapper {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .pricing-calculator {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 2.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2rem;
  }

  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-links-group {
    flex-wrap: wrap;
    gap: 3rem;
  }
}

/* ==========================================================================
   5. Interactive Simulator Extensions (Phone Nav Bar, Tabs, & Load Charts)
   ========================================================================== */

/* Phone Navigation Footer (Matches FooterNavBar.vue in Golden Black White Theme) */
.phone-nav-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 55px;
  background: #0a0a0a;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4px 0;
  margin-top: auto; /* Pushes to bottom of the guest container */
  border-radius: 0 0 16px 16px;
}

.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  color: #888888;
  cursor: pointer;
  transition: all 0.3s ease;
}

.phone-nav-item span.material-symbols-outlined {
  font-size: 20px;
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}

.phone-nav-label {
  font-family: var(--font-outfit);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: capitalize;
}

.phone-nav-item:hover {
  color: #ffffff;
}

.phone-nav-item.active-nav-item {
  color: var(--color-primary); /* Gold color */
}

.phone-nav-item.active-nav-item span.material-symbols-outlined {
  transform: scale(1.15);
}

/* Tab contents and active tab toggles */
.tab-content {
  display: none;
  animation: fadeInTab 0.3s ease-out forwards;
}

.tab-content.active-tab {
  display: block;
}

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

/* Home Welcome Card styling inside Guest App */
.guest-welcome-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  text-align: center;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.welcome-icon {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.guest-welcome-card h5 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-outfit);
}

.guest-welcome-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stay-dates {
  font-size: 0.75rem !important;
  font-weight: 600;
  color: var(--color-primary) !important;
  margin-top: 4px;
}

.quick-info-box {
  display: flex;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--color-primary);
  padding: 0.75rem;
  border-radius: 4px;
}

.info-icon {
  color: var(--color-primary);
  font-size: 18px;
}

.info-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Admin Dashboard Chart styling (Real-time load) */
.admin-chart-section {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
}

.chart-title {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.admin-bar-chart {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 75px;
  padding-top: 15px;
}

.chart-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.chart-bar {
  width: 22px;
  background: linear-gradient(
    180deg,
    var(--color-secondary) 0%,
    var(--color-primary) 100%
  );
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 10px; /* Default height */
}

.chart-bar::before {
  content: attr(data-count);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-primary);
  font-size: 0.65rem;
  font-weight: 700;
}

.bar-dining {
  background: linear-gradient(180deg, #fbbf24 0%, var(--color-primary) 100%);
}

.bar-service {
  background: linear-gradient(180deg, #c5a880 0%, #aa7c11 100%);
}

.bar-maintenance {
  background: linear-gradient(180deg, #f87171 0%, #d9534f 100%);
}

.bar-experience {
  background: linear-gradient(180deg, #ffffff 0%, #bdaea6 100%);
}

.admin-bar-chart .chart-label {
  font-family: var(--font-outfit);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 6px;
}

.type-experience {
  color: #ffffff;
  font-weight: 600;
}
