/* ─────────────────────────────────────────────────────────────
   PARROVENUE – Institutional Venue & Facility Management System
   Design System & Master Stylesheet (Light Theme / White Aesthetic)
   Powered by ParroPhins Private Limited
   ───────────────────────────────────────────────────────────── */

:root {
  /* Color Palette - Vibrant Light Theme & Green / Red Accent */
  --bg-body: #ffffff;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.95);

  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;

  --accent-emerald: #16a34a; /* Vibrant Green */
  --accent-green: #16a34a;
  --accent-red: #dc2626;     /* Vibrant Red */
  --accent-teal: #0d9488;
  --accent-amber: #d97706;

  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #064e3b 45%, #7f1d1d 100%);
  --gradient-primary: linear-gradient(135deg, #16a34a 0%, #dc2626 100%);
  --gradient-glow: radial-gradient(circle at 50% 0%, rgba(22, 163, 74, 0.18), transparent 70%);

  --border-light: #e2e8f0;
  --border-emerald: rgba(22, 163, 74, 0.3);
  --border-red: rgba(220, 38, 38, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 10px 40px rgba(5, 150, 105, 0.2);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
}

body {
  line-height: 1.6;
  background: var(--bg-body);
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden !important;
}

body.loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.loader-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.brand span {
  color: #16a34a; /* Green */
}

.brand em {
  font-style: normal;
  color: #dc2626; /* Red */
  margin-left: 2px;
}

.loader-progress {
  width: 200px;
  height: 4px;
  background: #e2e8f0;
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
}

.progress-bar {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  animation: loaderAnim 1.5s infinite ease-in-out;
}

@keyframes loaderAnim {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.powered-by {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.powered-by .parro { color: #0f172a; font-weight: 600; }
.powered-by .phins { color: var(--accent-emerald); font-weight: 700; }

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: 70px;
}

/* Nav text colors based on scroll state */
#navbar .brand span,
#navbar.scrolled .brand span,
.brand span {
  color: #16a34a !important; /* Green */
}

#navbar .brand em,
#navbar.scrolled .brand em,
.brand em {
  color: #dc2626 !important; /* Red */
  font-style: normal;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

#navbar.scrolled .nav-links a {
  color: var(--text-muted);
}

.nav-links a:hover, #navbar.scrolled .nav-links a:hover {
  color: var(--accent-emerald);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

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

.nav-cta {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: var(--accent-emerald);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.5);
}

/* HAMBURGER & MOBILE MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#navbar.scrolled .hamburger span {
  background: #0f172a;
}

.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--border-light);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.open {
  right: 0;
}

.mob-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.mob-cta {
  margin-top: 20px;
  text-align: center;
  background: var(--accent-emerald);
  color: #ffffff !important;
  border-radius: var(--radius-md);
  padding: 12px !important;
}

/* HERO SECTION (Rich Teal/Dark Gradient Banner with White Text) */
.hero {
  position: relative;
  padding: 105px 5% 45px;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #ffffff;
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100vw;
  height: 450px;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-badge {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.iso-badge img {
  height: 16px;
  width: auto;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: #ffffff;
}

.hero-brand .txt-green {
  color: #4ade80;
}

.hero-brand .txt-red {
  color: #f87171;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 610px;
  min-height: 5.2em;
  display: block;
}

#hero-sub::after {
  content: '|';
  animation: blink 0.7s infinite;
  margin-left: 2px;
  color: #4ade80;
  font-weight: bold;
}

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

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: #047857;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  background: #f8fafc;
}

.btn-outline {
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* HERO VISUAL / DASHBOARD MOCKUP */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.dashboard-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: floatAnim 6s ease-in-out infinite;
}

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

.dashboard-wrapper img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  display: block;
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(5, 150, 105, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

/* SECTION TITLES */
.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent-emerald);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text-main);
}

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

/* INTERACTIVE VENUE SIMULATOR DEMO (LIGHT BG) */
.simulator-section {
  padding: 50px 5%;
  background: var(--bg-alt);
  position: relative;
}

.sim-container {
  max-width: 1200px;
  width: 100%;
  min-width: 0 !important;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  width: 100%;
  max-width: 100%;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.sim-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  min-width: 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.control-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sim-select, .sim-input {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  display: block !important;
}

.sim-select option {
  font-size: 0.85rem;
  max-width: 100%;
}

.sim-select:focus, .sim-input:focus {
  border-color: var(--accent-emerald);
  background: #ffffff;
}

.sim-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.checkbox-card {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-main);
  transition: all 0.2s ease;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.checkbox-card span {
  min-width: 0;
  line-height: 1.3;
}

.checkbox-card.selected {
  background: rgba(5, 150, 105, 0.08);
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
  font-weight: 600;
}

.sim-preview {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  min-width: 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.venue-status-badge {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-available { background: rgba(5, 150, 105, 0.12); color: #047857; border: 1px solid rgba(5, 150, 105, 0.3); }
.status-busy { background: rgba(225, 29, 72, 0.12); color: #be123c; border: 1px solid rgba(225, 29, 72, 0.3); }

.preview-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
}

.detail-row .label { color: var(--text-muted); }
.detail-row .value { font-weight: 600; color: var(--text-main); }

.approval-flow {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.flow-title {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  z-index: 2;
}

.flow-step.done .step-icon { background: var(--accent-emerald); color: #ffffff; }
.flow-step.active .step-icon { background: var(--accent-amber); color: #ffffff; }

.step-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ABOUT SECTION */
.about-section {
  padding: 50px 5%;
  background: var(--bg-body);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 18px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-box:hover {
  transform: translateX(8px);
  border-color: var(--accent-emerald);
  box-shadow: var(--shadow-md);
}

.box-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* CORE FEATURES GRID */
.features-section {
  padding: 50px 5%;
  background: var(--bg-alt);
}

.features-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feat-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-emerald);
  box-shadow: var(--shadow-md);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feat-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

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

/* VENUE SHOWCASE SECTION */
.venues-section {
  padding: 50px 5%;
  background: var(--bg-body);
}

.venue-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.v-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v-tab.active, .v-tab:hover {
  background: var(--accent-emerald);
  color: #ffffff;
  border-color: var(--accent-emerald);
}

.venue-cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-emerald);
  box-shadow: var(--shadow-md);
}

.venue-card-body {
  padding: 28px;
}

.venue-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-emerald);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.venue-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.venue-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.meta-item {
  display: flex;
  justify-content: space-between;
}

.meta-item span:last-child {
  color: var(--text-main);
  font-weight: 600;
}

/* ADVANTAGES COMPARISON TABLE */
.advantages-section {
  padding: 50px 5%;
  background: var(--bg-alt);
}

.table-wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th, .comp-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-light);
}

.comp-table th {
  background: #f1f5f9;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.comp-table th:nth-child(3) {
  color: var(--accent-emerald);
}

.comp-table td:nth-child(2) {
  color: #dc2626;
}

.comp-table td:nth-child(3) {
  color: #059669;
  font-weight: 600;
  background: rgba(5, 150, 105, 0.04);
}

/* HERO PARTNERS MARQUEE STRIP (OFFICIALLY PARTNERED WITH) */
.hero-partners {
  background: linear-gradient(90deg, #f8fafc, #ffffff, #f8fafc);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.01);
}

.partners-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 5%;
}

.partners-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.partners-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
  display: flex;
  gap: 50px;
  align-items: center;
  width: max-content;
  animation: scrollPartners 25s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scrollPartners {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 25px)); }
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  filter: grayscale(0.6);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.partner-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.partner-item img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

/* CLIENTS SECTION (Trusted by 200+ Institutions) */
.clients {
  padding: 45px 0;
  background: var(--bg-body);
  overflow: hidden;
}

.logo-slider {
  padding: 10px 0;
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.logo-track {
  display: flex;
  gap: 30px;
  animation: scrollClients 45s linear infinite;
  white-space: nowrap;
}

.logo-track.reverse-track {
  animation: scrollClientsReverse 45s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollClientsReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.client-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-4px);
  border-color: var(--accent-emerald);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.12);
}

.client-img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.client-logo span {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* TECH PARTNERS WHITE CARDS GRID */
.tech-partners-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding: 0 5%;
}

.tech-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-emerald);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
}

.tech-card img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.tech-card span {
  font-size: 0.92rem;
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* CONTACT & DEMO FORM */
.contact-section {
  padding: 50px 5%;
  background: var(--bg-alt);
  position: relative;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

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

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

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

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-emerald);
  background: #ffffff;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-pill);
  background: var(--accent-emerald);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.5);
  background: #047857;
}

/* FOOTER (Clean Light Footer matching ParroThink & ParroBees) */
footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 45px 5% 24px;
  color: var(--text-main);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 24px;
  margin-bottom: 30px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 12px 0;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

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

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

/* SCROLL ANIMATION UTILITY */
.slide {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
  .sim-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .contact-container, .sim-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 0 4%;
    height: 70px;
  }
  
  .nav-links, .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }

  .hero {
    padding: 110px 4% 60px;
    min-height: auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2rem, 7.5vw, 2.8rem);
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    min-height: auto;
    margin-bottom: 24px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
    border-top: none;
  }

  .stat {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

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

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

  .stat-label {
    font-size: 0.7rem;
  }

  .floating-badge {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 14px;
    width: max-content;
    max-width: 90%;
  }

  /* Hero Partners Strip */
  .hero-partners {
    padding: 16px 0;
  }

  .partners-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .partners-label {
    font-size: 0.75rem;
  }

  /* Simulator & Content Sections */
  .simulator-section, .about-section, .features-section, .venues-section, .advantages-section, .contact-section {
    padding: 35px 4%;
  }

  .sim-container {
    padding: 20px 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .sim-options-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .flow-steps {
    overflow-x: auto;
    padding-bottom: 8px;
    justify-content: flex-start;
    gap: 12px;
  }

  .flow-step {
    flex-shrink: 0;
    min-width: 70px;
  }

  .features-grid, .venue-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feat-card, .venue-card-body {
    padding: 24px;
  }

  .v-tab {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .comp-table th, .comp-table td {
    padding: 14px 12px;
    font-size: 0.82rem;
  }

  .tech-partners-grid {
    gap: 10px;
    margin-top: 30px;
  }

  .tech-card {
    padding: 10px 16px;
    font-size: 0.84rem;
  }

  .contact-container {
    padding: 28px 18px;
    gap: 30px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  #navbar {
    height: 64px;
  }

  .nav-logo .logo-img {
    width: 34px;
    height: 34px;
  }

  .brand {
    font-size: 1.4rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
  }

  .contact-form div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .tech-card {
    width: 100%;
    justify-content: center;
  }

  .meta-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .meta-item span:last-child {
    font-size: 0.84rem;
  }

  .sim-preview {
    padding: 18px 14px;
  }

  .detail-row {
    flex-direction: column;
    gap: 2px;
  }

  .client-logo {
    padding: 8px 14px;
  }

  .client-img {
    width: 32px;
    height: 32px;
  }

  .client-logo span {
    font-size: 0.82rem;
  }
}
