:root {
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-header: 'Outfit', sans-serif;
  
  /* Color Palette */
  --bg-primary: #080b11;
  --bg-secondary: #0f131e;
  --bg-tertiary: #171d2d;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-cyan: #06b6d4;
  --accent-teal: #14b8a6;
  --accent-violet: #8b5cf6;
  --accent-indigo: #6366f1;
  
  --gradient-accent: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-indigo) 100%);
  --gradient-teal-green: linear-gradient(135deg, var(--accent-teal) 0%, #10b981 100%);
  --gradient-dark: linear-gradient(180deg, rgba(15, 19, 30, 0.8) 0%, rgba(8, 11, 17, 0.95) 100%);
  
  --border-glow: rgba(6, 182, 212, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.5);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px rgba(6, 182, 212, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover {
  color: var(--accent-violet);
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(6, 182, 212, 0.2); }
  50% { box-shadow: 0 0 30px rgba(6, 182, 212, 0.45); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  transition: var(--transition-normal);
}
.glass-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(6, 182, 212, 0.1);
}

/* Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  background: var(--gradient-accent);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transition: var(--transition-normal);
  text-decoration: none !important;
}
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5), var(--shadow-glow);
  color: #ffffff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none !important;
}
.btn-outline:hover {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
  color: #ffffff;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: var(--font-header);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #ffffff;
  outline: none;
  transition: var(--transition-normal);
}
.form-input:focus {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}
.form-input::placeholder {
  color: var(--text-muted);
}

/* NAVBAR DESIGN */
.site-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: rgba(8, 11, 17, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid var(--border-light) !important;
  padding: 1rem 2rem !important;
  transition: var(--transition-normal);
}

.site-navbar.scrolled {
  background: rgba(8, 11, 17, 0.9) !important;
  box-shadow: var(--shadow-sm);
}

.navbar-brand img {
  max-height: 38px;
  width: auto;
  transition: var(--transition-normal);
}

.nav-link {
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.95rem !important;
  color: var(--text-secondary) !important;
  padding: 0.5rem 1.25rem !important;
  transition: var(--transition-fast) !important;
  position: relative;
}
.nav-link:hover, .nav-item.active .nav-link {
  color: #ffffff !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease-in-out;
}
.nav-link:hover::after, .nav-item.active .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-toggler {
  border: 1px solid var(--border-light) !important;
  padding: 0.5rem !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* HERO SLIDER & BANNER */
.carousel {
  position: relative;
}
.carousel-item {
  height: 90vh;
  min-height: 600px;
  background: var(--bg-primary);
  overflow: hidden;
}
.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: brightness(0.7) contrast(1.1);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 11, 17, 0.4) 0%, rgba(8, 11, 17, 0.95) 100%);
  z-index: 1;
}

.carousel-item .content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-p {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.content-h2 {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .content-h2 {
    font-size: 2.25rem;
  }
}

/* SECTION GLOBAL TITLE */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
}
.section-subtitle {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 2.75rem;
  letter-spacing: -1px;
  color: #ffffff;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  margin: 1rem auto 0;
}

/* ABOUT SECTION */
.about-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
  z-index: 1;
}

/* COWORK STATS SECTION */
.stats-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 6rem 0;
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stat-item {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}
.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(255, 255, 255, 0.04);
}
.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.stat-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.stat-number {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* SERVICES SECTION */
.services-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}
.service-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition-normal);
}
.service-box:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}
.service-box .img-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
  margin-bottom: 1.75rem;
  transition: var(--transition-normal);
}
.service-box:hover .img-box {
  background: var(--gradient-accent);
}
.service-box .img-box img {
  width: 30px;
  height: 30px;
  transition: var(--transition-normal);
}
.service-box:hover .img-box img {
  filter: brightness(0) invert(1);
}
.service-h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.service-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
  position: relative;
}
.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(6, 182, 212, 0.3);
  box-shadow: var(--shadow-glow);
  margin-bottom: 1.5rem;
}
.quote-icon {
  font-size: 3rem;
  color: rgba(6, 182, 212, 0.15);
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PRICING PLANS */
.pricing-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}
.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  height: 100%;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.15);
}
.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-header);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-violet);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}
.pricing-title {
  font-family: var(--font-header);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.pricing-price {
  font-family: var(--font-header);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 0.25rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  text-align: left;
  flex-grow: 1;
}
.pricing-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}
.pricing-features li i {
  color: var(--accent-cyan);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

/* HOST SECTION */
.host-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, rgba(8, 11, 17, 0.8) 0%, rgba(8, 11, 17, 0.95) 100%), url(../images/cowork.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}
.host-content {
  max-width: 800px;
  margin: 0 auto;
}
.host-h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.host-p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* CONTACT SECTION */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}
.contact-info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  height: 100%;
  transition: var(--transition-normal);
}
.contact-info-card:hover {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(255, 255, 255, 0.04);
}
.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.25rem;
  margin-right: 1.25rem;
  flex-shrink: 0;
}
.contact-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-details p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
}

/* DISCUSS/ENQUIRY SECTION */
.discuss-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-light);
}

/* FOOTER */
.footer-section {
  padding: 5rem 0 3rem;
  background: #04060a;
  border-top: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.footer-logo {
  margin-bottom: 2.5rem;
}
.footer-links {
  margin-bottom: 2.5rem;
}
.footer-links a {
  font-family: var(--font-header);
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.footer-links a:hover {
  color: var(--accent-cyan);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: var(--transition-normal);
}
.footer-social-link:hover {
  background: var(--gradient-accent);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}
.footer-divider {
  height: 1px;
  background: var(--border-light);
  margin: 2rem 0;
}
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-bottom img {
  vertical-align: middle;
  margin-left: 5px;
}

/* SUBPAGES TOP HEADER */
.top-header {
  background-image: linear-gradient(180deg, rgba(8, 11, 17, 0.6) 0%, rgba(8, 11, 17, 0.95) 100%), url(../images/header.jpg);
  height: 45vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-light);
}
.page-title {
  font-family: var(--font-header);
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  letter-spacing: -1.5px;
}

/* CARDS LIST FOR FACILITIES / WHY CHOOSE US */
.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(255, 255, 255, 0.04);
}
.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.feature-title {
  font-family: var(--font-header);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
.feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

/* BOOK A SEAT VIEW SPECIFICS */
.benefits-list {
  list-style: none;
  padding: 0;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.benefit-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.booking-form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

/* UTILITY CLASSES */
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FAQ Accordion Styling */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-normal);
}
.faq-item:hover {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(255, 255, 255, 0.04);
}
.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-header);
  font-weight: 600;
  color: #ffffff;
  user-select: none;
}
.faq-header i {
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-header i {
  transform: rotate(180deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.faq-item.active .faq-body {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Seating Selector Map */
.seat-map-wrapper {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 320px;
  margin: 1.5rem auto;
}
.desk-item {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  user-select: none;
}
.desk-item.available {
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.3);
  color: var(--accent-teal);
}
.desk-item.available:hover {
  background: rgba(20, 184, 166, 0.2);
  border-color: var(--accent-teal);
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.2);
}
.desk-item.booked {
  background: rgba(244, 63, 94, 0.05);
  border-color: rgba(244, 63, 94, 0.15);
  color: rgba(244, 63, 94, 0.4);
  cursor: not-allowed;
}
.desk-item.selected {
  background: var(--gradient-accent);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}
.legend-item {
  display: inline-flex;
  align-items: center;
  margin-right: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.legend-color {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  margin-right: 6px;
}

/* Filter Buttons */
.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3rem;
}
.filter-btn {
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-normal);
}
.filter-btn:hover {
  border-color: rgba(6, 182, 212, 0.2);
  color: #ffffff;
}
.filter-btn.active {
  background: var(--gradient-accent);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}