/* NexDeys Global Stylesheet (2026 UI/UX Standards) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-color: #040B14;
  --card-bg: #0B1221;
  --card-border: #1B3A57;
  --primary: #00B4D8;
  --accent-blue: #1E56F1;
  --accent-purple: #B14BF4;
  --text-main: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.6);
  --glass-bg: rgba(11, 18, 33, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--card-border);
  border-radius: 4px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

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

a:hover {
  color: var(--text-main);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}

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

.logo-img {
  height: 48px;
  width: auto;
  clip-path: circle(25% at 50% 36%);
  transform: scale(1.8);
  filter: drop-shadow(0 0 6px rgba(0, 180, 216, 0.5));
  transition: transform 0.3s ease;
  margin-right: -4px;
}

.logo-img:hover {
  transform: scale(1.95);
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(to right, #ffffff, #00B4D8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

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

.nav-link {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-btn {
  padding: 10px 24px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(30, 86, 241, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 86, 241, 0.5);
  color: white;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, rgba(4, 11, 20, 0) 70%);
  top: -100px;
  left: -200px;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 8s infinite alternate ease-in-out;
}

.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(177, 75, 244, 0.1) 0%, rgba(4, 11, 20, 0) 70%);
  bottom: 0;
  right: -100px;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 10s infinite alternate-reverse ease-in-out;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  z-index: 1;
}

.hero-content {
  flex: 1;
  text-align: left;
  max-width: 600px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  animation: fadeIn 1.2s ease-out forwards;
}

.hero-app-mockup {
  max-width: 100%;
  height: auto;
  max-height: 520px;
  filter: drop-shadow(0 20px 40px rgba(0, 180, 216, 0.2));
  transform: perspective(1000px) rotateY(-15deg);
  transition: transform 0.5s ease;
  cursor: zoom-in;
}

.hero-app-mockup:hover {
  transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 50px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: slideDown 0.8s ease-out;
}

.hero-title {
  font-size: 64px;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 500px;
}

.app-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.coming-soon-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(30, 86, 241, 0.1);
  border: 1px solid rgba(30, 86, 241, 0.3);
  border-radius: 50px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.coming-soon-icon {
  color: var(--primary);
}

/* Hero Title Highlight */
.hero-title-highlight {
  color: var(--primary);
}

/* Hero CTA Buttons Row */
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(90deg, var(--accent-blue), #0083d3);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(30, 86, 241, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 86, 241, 0.55);
  color: white;
}

.hero-btn-arrow {
  font-size: 18px;
  font-style: normal;
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.hero-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

/* Hero Trust Badges Row */
.hero-trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

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

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.store-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.store-text {
  text-align: left;
}

.store-text span {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-text strong {
  font-size: 16px;
  font-weight: 600;
}

/* Features Grid */
.features {
  padding: 80px 5%;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.15);
}

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

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Footer (Compliance Crucial) */
footer {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  padding: 80px 5% 40px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand .logo-text {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 300px;
  margin-bottom: 24px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-size: 15px;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

/* Newsletter */
.footer-newsletter-desc {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
  max-width: 260px;
}

.footer-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-size: 13px;
  padding: 12px 14px;
  font-family: 'Outfit', sans-serif;
}

.footer-newsletter-input::placeholder {
  color: var(--text-muted);
}

.footer-newsletter-btn {
  background: var(--primary);
  border: none;
  cursor: pointer;
  padding: 12px 14px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.footer-newsletter-btn:hover {
  background: var(--accent-blue);
}

.footer-newsletter-btn .material-icons-round {
  font-size: 18px;
}

/* Footer Bottom with social icons */
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer-social-icon:hover {
  background: rgba(0, 180, 216, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

/* App Download Banner */
.app-download-banner {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 48px 5%;
}

.app-download-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.app-download-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.app-download-subtitle {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 480px;
}

.app-download-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  background: #000;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 160px;
}

.app-store-btn:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.app-store-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.app-store-text {
  text-align: left;
}

.app-store-text span {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-store-text strong {
  font-size: 15px;
  font-weight: 600;
}

/* Content Pages (Privacy, Terms, etc.) */
.content-page {
  padding: 140px 5% 80px;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out;
}

.page-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 24px;
}

.page-header h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

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

.legal-content h2 {
  font-size: 22px;
  margin: 40px 0 16px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 18px;
  margin: 24px 0 12px;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.legal-content ul {
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-left: 24px;
  font-size: 15px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Premium Layout for Legal Pages (Swiggy/Zomato Style) */
.legal-container-layout {
  display: flex;
  gap: 40px;
  max-width: 1200px !important;
  margin: 0 auto;
  align-items: flex-start;
}

.legal-sidebar {
  position: sticky;
  top: 110px;
  width: 280px;
  flex-shrink: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 24px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}

.legal-sidebar h3 {
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 12px;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 10px;
}

.sidebar-nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 4px 0;
}

.sidebar-nav a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.legal-body {
  flex: 1;
  min-width: 0;
}

.legal-content section {
  margin-bottom: 48px;
  scroll-margin-top: 110px; /* Offset for sticky navbar */
}

.contact-card-box {
  background: rgba(0, 180, 216, 0.05);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
}

.contact-card-box strong {
  color: var(--primary);
}

.legal-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.legal-content li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 15px;
}

.legal-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Responsive sidebar */
@media (max-width: 992px) {
  .legal-container-layout {
    flex-direction: column;
    gap: 30px;
  }
  
  .legal-sidebar {
    position: relative;
    top: 0;
    width: 100%;
    max-height: 250px;
  }
}

/* About Section */
.about {
  padding: 100px 5% 60px;
  position: relative;
  overflow: hidden;
}

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

.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-title {
  font-size: 40px;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.about-lead {
  font-size: 20px;
  color: var(--text-main);
  font-weight: 450;
  margin-bottom: 16px;
  line-height: 1.5;
}

.about-lead-sub {
  font-size: 16px;
  color: var(--text-muted);
}

.ecosystem-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px 0;
}

.ecosystem-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 30px 0 30px;
  transition: transform 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  height: 550px;
  box-sizing: border-box;
}

.ecosystem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 180, 216, 0.4);
}

.ecosystem-card:hover .ecosystem-phone-img {
  transform: translateY(0) scale(1.02);
}

.ecosystem-content {
  text-align: center;
  margin-bottom: 20px;
}

.ecosystem-phone-container {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.ecosystem-phone-img {
  max-width: 250px;
  height: 280px;
  object-fit: contain;
  transform: translateY(15px);
  transition: transform 0.4s ease;
  cursor: zoom-in;
}

.ecosystem-title {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 12px;
}

.ecosystem-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.about-grid-secondary {
  grid-template-columns: 1fr 1fr;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 180, 216, 0.4);
}

.about-card-highlight {
  background: linear-gradient(135deg, rgba(30, 86, 241, 0.15) 0%, rgba(11, 18, 33, 1) 100%);
  border-color: rgba(30, 86, 241, 0.3);
}

.about-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 24px;
}

.about-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.about-card p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-list {
  list-style: none;
  margin-bottom: 20px;
}

.about-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 10px;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--primary);
  font-weight: bold;
}

/* Vision & Mission */
.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.about-vm-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-vm-icon {
  width: 48px;
  height: 48px;
  background: rgba(177, 75, 244, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  font-size: 24px;
  flex-shrink: 0;
}

.about-vm-icon.primary {
  background: rgba(0, 180, 216, 0.1);
  color: var(--primary);
}

.about-vm-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.about-vm-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Callout Section */
.about-callout {
  text-align: center;
  background: linear-gradient(90deg, rgba(30, 86, 241, 0.05) 0%, rgba(177, 75, 244, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 50px 30px;
  margin-top: 40px;
}

.callout-pill {
  display: inline-block;
  margin: 0 10px 15px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.callout-welcome {
  font-size: 28px;
  margin-top: 20px;
  background: linear-gradient(to right, #00B4D8, #B14BF4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 42px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav-links { display: none; } /* Simplified mobile nav for landing */
  .about-grid, .about-grid-secondary, .about-vm-grid, .ecosystem-section { grid-template-columns: 1fr; }
  .ecosystem-card { flex-direction: column; height: auto; padding: 30px 20px 0 20px; }
  .ecosystem-content { padding-right: 0; padding-bottom: 20px; }
  .ecosystem-phone-container { flex: 0 0 auto; height: 200px; width: 120px; }
  .ecosystem-phone-img { height: 180px; max-width: 100%; }
  .about-title { font-size: 32px; }
}

/* Utility Classes to replace inline styles */
.navbar-solid { background: var(--bg-color); }
.nav-btn-outline { background: transparent; border: 1px solid var(--primary); box-shadow: none; }
.footer-compact { margin-top: 0; }
.footer-bottom-plain { border-top: none; }
.footer-icon { color: var(--primary); font-size: 18px; }
.footer-contact-link { color: var(--text-main); }

/* Zoom Modal Overlay */
.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 11, 20, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.zoom-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.zoom-modal-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 180, 216, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.zoom-modal.active .zoom-modal-img {
  transform: scale(1);
}
.zoom-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.zoom-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Contact & Live Chat Section */
.contact-section {
  padding: 80px 5%;
  position: relative;
  background: radial-gradient(circle at bottom right, rgba(0, 180, 216, 0.05), transparent 60%);
  border-top: 1px solid var(--glass-border);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-panel h2 {
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFF 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info-panel p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 16px;
}

.contact-details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    align-items: stretch;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 15px 20px;
  border-radius: 12px;
}

.contact-item-icon {
  color: var(--primary);
  font-size: 24px;
}

/* Embedded Chat UI */
.chat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  height: 480px;
  position: relative;
}

.chat-header {
  background: linear-gradient(135deg, #0B1221 0%, #15223c 100%);
  padding: 15px 20px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
}

.chat-status-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #2ec4b6;
  border-radius: 50%;
  margin-left: 6px;
  box-shadow: 0 0 8px #2ec4b6;
}

.chat-header-title h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.chat-header-title span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: radial-gradient(circle at center, rgba(11, 18, 33, 0.4), #040b14);
}

.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  word-wrap: break-word;
}

.chat-bubble.visitor {
  align-self: flex-end;
  background: var(--primary);
  color: #040b14;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}

.chat-bubble.admin {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  border-bottom-left-radius: 4px;
}

.chat-bubble.system {
  align-self: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 12px;
  border-radius: 20px;
  padding: 4px 12px;
}

.chat-input-area {
  padding: 12px 15px;
  border-top: 1px solid var(--card-border);
  background: #0B1221;
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  color: var(--text-main);
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.chat-input:focus {
  border-color: var(--primary);
}

.chat-send-btn {
  background: var(--primary);
  border: none;
  color: #040b14;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.chat-send-btn:hover {
  transform: scale(1.05);
  background: #0096b4;
}

.chat-send-btn:active {
  transform: scale(0.95);
}

/* Floating FAB Trigger and Compact Overlay Chat */
.floating-chat-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.chat-fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #040b14;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.chat-fab.visible {
  opacity: 1;
  pointer-events: auto;
}

.chat-fab:hover {
  transform: scale(1.1) rotate(15deg);
}

.chat-fab:active {
  transform: scale(0.9);
}

.chat-popup {
  position: absolute;
  bottom: 65px;
  right: 0;
  width: 320px;
  height: 420px;
  border-radius: 14px;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  transform-origin: bottom right;
}

.chat-popup.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Inline style replacement utility classes */
.contact-item h4 {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 4px 0;
}

.contact-item a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.close-floating-chat {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-send-btn {
  font-size: 20px;
}

.icon-close-btn {
  font-size: 20px;
}

.icon-chat-fab {
  font-size: 24px;
}

.contact-page-container {
  max-width: 1000px;
  margin: 120px auto 80px auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.contact-info-sidebar {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}

.contact-sidebar-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFF 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-sidebar-header > p {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.contact-sidebar-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-sidebar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-sidebar-item span {
  color: var(--primary);
  font-size: 24px;
  margin-top: 2px;
}

.contact-sidebar-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.contact-sidebar-item p,
.contact-sidebar-item a {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-sidebar-item a:hover {
  color: var(--primary);
}

.contact-sidebar-footer {
  margin-top: 30px;
  border-top: 1px solid var(--card-border);
  padding-top: 20px;
}

.trust-badge {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge::before {
  content: "✓";
  color: #2ec4b6;
  font-weight: bold;
}

.contact-form-card {
  flex: 1.3;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

@media (max-width: 860px) {
  .contact-page-container {
    flex-direction: column-reverse;
    gap: 30px;
    margin-top: 100px;
  }
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-form-header {
  margin-bottom: 30px;
  text-align: center;
}

.contact-form-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #FFF 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-form-header p {
  color: var(--text-muted);
  font-size: 15px;
}

.form-group {
  margin-bottom: 22px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-main);
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.15);
}

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

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

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

.contact-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 86, 241, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.form-status-alert {
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  display: none;
}

.form-status-alert.error {
  background: rgba(239, 83, 80, 0.1);
  border: 1px solid rgba(239, 83, 80, 0.3);
  color: #ef5350;
  display: block;
}

.form-status-alert.success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
  display: block;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* How NexDeys Orchestrates Bookings Section */
.how-it-works-section {
  padding: 120px 5% 100px;
  background: radial-gradient(circle at center, rgba(30, 86, 241, 0.04) 0%, transparent 80%);
  position: relative;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: -10px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Telemetry Dashboard Layout */
.telemetry-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 60px;
}

@media (max-width: 1024px) {
  .telemetry-dashboard {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Left Panel: Telemetry Console */
.telemetry-console {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.console-step {
  display: flex;
  gap: 25px;
  background: rgba(11, 18, 33, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.console-step:hover {
  background: rgba(11, 18, 33, 0.55);
  border-color: rgba(0, 180, 216, 0.25);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.05);
}

.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 20px;
}

.indicator-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #040B14;
  border: 3px solid var(--primary);
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
  z-index: 2;
  transition: all 0.3s ease;
}

.console-step:hover .indicator-dot {
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary);
  transform: scale(1.1);
}

.indicator-line {
  position: absolute;
  top: 16px;
  bottom: -50px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(30, 86, 241, 0.1) 100%);
  z-index: 1;
}

.step-detail {
  flex: 1;
}

.step-code {
  font-family: monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
  background: rgba(0, 180, 216, 0.06);
  padding: 2px 8px;
  border-radius: 4px;
}

.console-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

.console-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Right Panel: Live HUD Visualizer */
.telemetry-visualizer {
  background: rgba(8, 14, 26, 0.85);
  border: 1px solid rgba(27, 58, 87, 0.7);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(0, 180, 216, 0.03);
  position: relative;
  overflow: hidden;
}

.telemetry-visualizer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.visualizer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 18px;
  margin-bottom: 25px;
}

.visualizer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 1px;
}

.visualizer-pulse-icon {
  font-size: 18px;
  color: var(--primary);
  animation: pulse-dot 1.5s infinite;
}

.visualizer-status {
  font-family: monospace;
  font-size: 11px;
  color: #00e676;
  background: rgba(0, 230, 118, 0.08);
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 230, 118, 0.15);
}

.bays-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bay-item {
  background: rgba(11, 18, 33, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.bay-item:hover {
  background: rgba(11, 18, 33, 0.6);
  border-color: rgba(30, 86, 241, 0.2);
}

.bay-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.bay-id {
  font-family: monospace;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
}

.bay-badge {
  font-family: monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.bay-badge.occupied {
  background: rgba(255, 179, 0, 0.08);
  color: #ffb300;
  border: 1px solid rgba(255, 179, 0, 0.15);
}

.bay-badge.open {
  background: rgba(0, 230, 118, 0.08);
  color: #00e676;
  border: 1px solid rgba(0, 230, 118, 0.15);
}

.bay-badge.queue {
  background: rgba(0, 180, 216, 0.08);
  color: var(--primary);
  border: 1px solid rgba(0, 180, 216, 0.15);
}

.bay-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), var(--primary));
  border-radius: 3px;
  transition: width 1s ease-in-out;
}

.progress-fill.open-color {
  background: rgba(255, 255, 255, 0.03);
}

.progress-fill.queue-color {
  background: var(--primary);
}

.bay-footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

/* Disclaimer Page Contact Details */
.contact-details-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.contact-details-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  position: relative;
  padding-left: 0 !important;
}

.contact-details-list li::before {
  display: none !important;
  content: none !important;
}

.contact-details-list .material-icons-round {
  color: var(--primary);
  font-size: 20px;
}

.contact-details-list a {
  color: var(--primary);
  text-decoration: none;
}

.contact-details-list a:hover {
  text-decoration: underline;
}





