/* Technology Theme - LinkElement Hosting */
/* Green + Dark palette with movie-tech vibes */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Core Colors - Greens */
  --color-primary: #10b981;
  --color-primary-light: #34d399;
  --color-primary-dark: #059669;
  --color-secondary: #22c55e;
  --color-accent: #84cc16;
  --color-lime: #a3e635;
  
  /* Backgrounds - Dark but not pitch black */
  --bg-primary: #111827;
  --bg-secondary: #1f2937;
  --bg-tertiary: #374151;
  --bg-card: rgba(31, 41, 55, 0.9);
  --bg-card-hover: rgba(55, 65, 81, 0.95);
  
  /* Text Colors */
  --text-primary: #f0fdf4;
  --text-secondary: #d1fae5;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #10b981 0%, #22c55e 50%, #84cc16 100%);
  --gradient-hero: linear-gradient(180deg, #111827 0%, #064e3b 50%, #111827 100%);
  --gradient-glow: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
  --gradient-card: linear-gradient(145deg, rgba(16, 185, 129, 0.08) 0%, rgba(34, 197, 94, 0.03) 100%);
  
  /* Typography */
  --font-heading: 'JetBrains Mono', monospace;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Border & Radius */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* Reset & Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-lime);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Navigation */
.navbar {
  background: rgba(17, 24, 39, 0.95) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.3) !important;
  padding: var(--space-sm) 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary-light) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-brand::before {
  color: var(--color-primary);
  margin-right: 8px;
  animation: pulse 2s infinite;
}

.navbar-nav {
  gap: var(--space-xs);
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius);
  transition: var(--transition-fast);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.nav-link:hover {
  color: var(--color-primary-light) !important;
  background: rgba(16, 185, 129, 0.1);
}

.nav-link.active {
  color: var(--color-primary) !important;
  background: rgba(16, 185, 129, 0.15);
}

/* Buttons */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  border: none;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--bg-primary);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-base);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

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

.card-body {
  padding: var(--space-lg);
}

.card-title, .card h3 {
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

/* Hero Section */
#hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

#hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    var(--gradient-glow),
    radial-gradient(ellipse at bottom right, rgba(132, 204, 22, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Tech Grid Overlay */
#hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

#hero-section .container {
  position: relative;
  z-index: 1;
}

#hero-section h1 {
  color: var(--text-primary);
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

#hero-section .lead {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  color: var(--text-secondary);
}

/* Section Styles */
section {
  position: relative;
  padding: var(--space-2xl) 0;
}

.bg-light {
  background: var(--bg-secondary) !important;
  position: relative;
}

.bg-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

/* Text Utilities */
.text-muted {
  color: var(--text-muted) !important;
}

.text-secondary {
  color: var(--text-secondary) !important;
}

/* Feature Cards with Icons */
.feature-card {
  position: relative;
  padding-top: var(--space-lg);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--color-primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Pricing Cards */
.pricing-card {
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.pricing-card.popular::before {
  opacity: 1;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary-light);
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.pricing-card .badge {
  background: var(--gradient-primary);
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.5rem 1rem;
  color: var(--bg-primary);
}

/* Lists */
.list-unstyled li {
  color: var(--text-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.list-unstyled li:last-child {
  border-bottom: none;
}

.list-unstyled li::before {
  content: '>';
  color: var(--color-primary);
  font-weight: bold;
  margin-right: 0.75rem;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  padding: var(--space-xl) 0;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer a {
  color: var(--text-muted);
  transition: var(--transition-fast);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--color-primary-light);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.text-white-opacity-50 {
  color: var(--text-muted) !important;
}

.text-white-opacity-50:hover {
  color: var(--text-secondary) !important;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px var(--color-primary);
  }
  50% {
    opacity: 0.7;
    text-shadow: 0 0 20px var(--color-primary-light);
  }
}

@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100vh);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px var(--color-primary);
  }
  50% {
    box-shadow: 0 0 20px var(--color-primary), 0 0 40px var(--color-primary-light);
  }
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Video Background Darkening */
#hero-section video {
  filter: brightness(0.8) contrast(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --space-2xl: 3rem;
    --space-xl: 2rem;
  }
  
  #hero-section {
    min-height: 500px;
  }
  
  .card {
    margin-bottom: var(--space-sm);
  }
  
  .navbar-collapse {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    border: 1px solid rgba(16, 185, 129, 0.2);
  }
  
  .btn {
    width: 100%;
  }
}

/* Navbar Toggler - make it lighter */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:hover {
  border-color: var(--color-primary) !important;
}

.navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2310b981' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-light);
}

/* Selection */
::selection {
  background: rgba(16, 185, 129, 0.3);
  color: var(--text-primary);
}

/* Bootstrap Overrides */
.border-primary {
  border-color: var(--color-primary) !important;
}

.bg-primary {
  background: var(--gradient-primary) !important;
}

.border-bottom {
  border-color: rgba(16, 185, 129, 0.2) !important;
}

/* Form Elements */
.form-control {
  background: var(--bg-card);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--text-primary);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
}

.form-control:focus {
  background: var(--bg-card-hover);
  border-color: var(--color-primary);
  color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-control::placeholder {
  color: var(--text-dim);
}

.form-label {
  color: var(--text-secondary);
  font-weight: 500;
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.form-select {
  background-color: var(--bg-card);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--text-primary);
  border-radius: var(--border-radius);
}

.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* FAQ Accordion */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--border-radius) !important;
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  padding: var(--space-md);
  font-family: var(--font-heading);
}

.accordion-button:not(.collapsed) {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-primary-light);
  box-shadow: none;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(65%) sepia(89%) saturate(439%) hue-rotate(102deg) brightness(100%) contrast(90%);
}

.accordion-body {
  color: var(--text-secondary);
  padding: var(--space-md);
}

/* Comparison Table */
.table {
  color: var(--text-secondary);
  border-color: rgba(16, 185, 129, 0.15);
  font-family: var(--font-body);
}

.table thead th {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
  border-color: rgba(16, 185, 129, 0.25);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.table tbody td {
  border-color: rgba(16, 185, 129, 0.15);
  font-family: var(--font-heading);
}

.table-hover tbody tr:hover {
  background: rgba(16, 185, 129, 0.05);
}

.text-success {
  color: var(--color-primary-light) !important;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

/* Terminal-style accent */
.terminal-line {
  font-family: var(--font-heading);
  color: var(--color-primary-light);
}

.terminal-line::before {
  content: '$ ';
  color: var(--color-lime);
}

/* Tech decorations */
.tech-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-primary);
}

.tech-corner.top-left {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.tech-corner.top-right {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.tech-corner.bottom-left {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.tech-corner.bottom-right {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

/* ACG */
.price {
color: #04d669;
}
.mostpopular{
margin-top:10px;
}

/* Golden Button Link */

a.golden:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  color: var(--bg-primary);
  background: linear-gradient(135deg, #d4af37 0%, #f5d742 50%, #d4af37 100%);
}

a.golden:active {
  transform: translateY(0);
}
