:root {
  --primary: #050A15;
  /* Deep Black/Blue */
  --secondary: #0A1428;
  /* Slightly lighter blue */
  --accent-blue: #0077ff;
  --accent-purple: #8e2de2;
  --accent-glow: rgba(0, 119, 255, 0.6);
  --text-main: #f0f4f8;
  --text-muted: #a0aec0;
  --glass-bg: rgba(10, 20, 40, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.glow-text {
  background: linear-gradient(to right, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.glow-text-sm {
  color: #fff;
  text-shadow: 0 0 15px var(--accent-glow);
}

.lead-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
}

/* Backgrounds */
.space-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #0a1428 0%, #03050a 100%);
  z-index: -2;
}

.overlay-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(142, 45, 226, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(0, 119, 255, 0.08), transparent 25%);
  z-index: -1;
  pointer-events: none;
}

/* Header & Nav */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 10, 21, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
  transition: all 0.3s ease;
}

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

.logo img {
  height: 70px;
  width: auto;
}

/* WordPress Nav Menu Styling */
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li.current-menu-item a {
  color: #fff;
}

nav ul li a:hover::after,
nav ul li.current-menu-item a::after {
  width: 100%;
  box-shadow: 0 0 10px var(--accent-glow);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* App Content Area */
#app-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.page {
  width: 100%;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.cta-primary,
.cta-secondary {
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  text-align: center;
}

.cta-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 119, 255, 0.3);
}

.cta-secondary {
  background: transparent;
  color: white;
  border: 1px solid var(--accent-blue);
}

.hover-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 119, 255, 0.5);
}

.cta-secondary:hover {
  background: rgba(0, 119, 255, 0.1);
  box-shadow: inset 0 0 15px rgba(0, 119, 255, 0.2);
}

.w-100 {
  width: 100%;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-padding {
  padding: 5rem 0;
}

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

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.bg-darker {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-4 {
  gap: 4rem;
}

/* Cards */
.card {
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.border-accent {
  background: transparent;
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--accent-blue);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3,
.card h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.card a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.card a:hover {
  color: #fff;
}

/* Lists */
.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.check {
  color: var(--accent-blue);
  font-weight: bold;
}

/* Home Specific */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/satellite_earth_orbit.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5, 10, 21, 0.9) 0%, rgba(5, 10, 21, 0.4) 100%);
}

.orbit-path {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
}

.path-1 {
  width: 600px;
  height: 600px;
  animation: spin 60s linear infinite;
}

.path-2 {
  width: 900px;
  height: 900px;
  border-color: rgba(0, 119, 255, 0.1);
  animation: spin 90s linear infinite reverse;
}

@keyframes spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 5%;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtext {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 2rem;
}

.contact-banner {
  padding: 4rem 0;
  background: linear-gradient(90deg, rgba(142, 45, 226, 0.1), rgba(0, 119, 255, 0.1));
  border-top: 1px solid var(--glass-border);
}

/* Page Headers */
.page-header {
  padding: 6rem 0 3rem;
  background: linear-gradient(to bottom, rgba(0, 119, 255, 0.05), transparent);
  border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--accent-blue);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tags */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-blue);
}

/* Products Feature */
.highlight-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 0;
  overflow: hidden;
}

.feature-content {
  padding: 3rem;
}

.ui-mockup-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background-color: var(--secondary);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.feature-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-blue);
}

/* Form Styles */
.form-container {
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 2px rgba(0, 119, 255, 0.2);
}

.captcha-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.captcha-group input {
  width: auto;
}

/* Detail Card */
.detail-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
}

.detail-card .icon {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.detail-card h4 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.detail-card a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.detail-card a:hover {
  color: var(--accent-blue);
}

/* Footer Modern Design */
.site-footer {
  background: var(--primary);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 5% 2rem;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-purple), transparent);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 100px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.brand-tagline {
  color: var(--accent-blue);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

.whatsapp-btn:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.linkedin-btn:hover {
  background: #0077b5;
  border-color: #0077b5;
  box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

.footer-links-group h4,
.footer-contact-group h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links-group h4::after,
.footer-contact-group h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--accent-blue);
}

.footer-policy-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-policy-links a,
.footer-contact-group p,
.footer-contact-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-policy-links a:hover,
.footer-contact-group a:hover {
  color: var(--accent-blue);
}

.footer-contact-group p {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Policy Pages Layout */
.relative {
  position: relative;
}

.policy-header {
  padding: 8rem 0 4rem;
  background: radial-gradient(ellipse at bottom, rgba(0, 119, 255, 0.15) 0%, transparent 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.header-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: rgba(142, 45, 226, 0.3);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

.policy-body {
  position: relative;
}

.policy-document {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem 0 3rem;
}

.policy-document::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-blue), transparent);
}

.policy-document h3 {
  font-size: 1.75rem;
  color: #fff;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.policy-document h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-purple);
  box-shadow: 0 0 10px var(--accent-purple);
}

.policy-document p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #c0c8d0;
  margin-bottom: 1.5rem;
}

.policy-document ul.feature-list {
  margin-bottom: 2rem;
}

.policy-document ul.feature-list li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #d0d8e0;
}

.policy-document a {
  color: var(--accent-blue);
  text-decoration: none;
}

.policy-document a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 3rem;
  }

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

  .highlight-feature {
    grid-template-columns: 1fr;
  }

  .feature-image {
    order: -1;
  }

  .glass-header {
    padding: 1rem 5%;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(5, 10, 21, 0.95);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease-in-out;
    border-bottom: 1px solid var(--glass-border);
  }

  nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  /* Fixed for WP menu structure */
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-links-group h4::after,
  .footer-contact-group h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
