/* FlyV - Cyberpunk Design System Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800;900&family=Rajdhani:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #05050a;
  --bg-card: rgba(13, 13, 26, 0.7);
  --bg-card-hover: rgba(22, 22, 44, 0.85);
  --color-cyan: #00f3ff;
  --color-pink: #ff007f;
  --color-purple: #8a2be2;
  --color-text: #e2e2ec;
  --color-text-muted: #9595a8;
  --font-cyber: 'Orbitron', 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-cyan: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(0, 243, 255, 0.2);
  --glow-pink: 0 0 10px rgba(255, 0, 127, 0.5), 0 0 20px rgba(255, 0, 127, 0.2);
  --border-neon: 1px solid rgba(0, 243, 255, 0.2);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

/* Cyberpunk Background Grid & Paper Airplane Floating Elements */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  z-index: -2;
  pointer-events: none;
}

.paper-plane-bg-decor {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.floating-plane {
  position: absolute;
  opacity: 0.12;
  color: var(--color-cyan);
  animation: floatPlane 25s linear infinite;
  filter: drop-shadow(0 0 8px var(--color-cyan));
}

.floating-plane:nth-child(2) {
  color: var(--color-pink);
  animation: floatPlaneReverse 35s linear infinite;
  filter: drop-shadow(0 0 8px var(--color-pink));
}

@keyframes floatPlane {
  0% {
    transform: translate(-100px, 110vh) rotate(45deg) scale(0.6);
  }
  100% {
    transform: translate(110vw, -100px) rotate(45deg) scale(1.4);
  }
}

@keyframes floatPlaneReverse {
  0% {
    transform: translate(110vw, 110vh) rotate(-135deg) scale(1.2);
  }
  100% {
    transform: translate(-100px, -100px) rotate(-135deg) scale(0.5);
  }
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-cyan);
  border-radius: 4px;
  box-shadow: 0 0 8px var(--color-cyan);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-pink);
  box-shadow: 0 0 12px var(--color-pink);
}

/* Typography & Neon Accents */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-cyber);
  font-weight: 700;
  letter-spacing: 1px;
}

.text-neon-cyan {
  color: var(--color-cyan);
  text-shadow: var(--glow-cyan);
}

.text-neon-pink {
  color: var(--color-pink);
  text-shadow: var(--glow-pink);
}

.cyber-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.cyber-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-pink), transparent);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background: rgba(5, 5, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 243, 255, 0.15);
  z-index: 100;
  padding: 15px 5%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-section img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--color-cyan));
  border-radius: 50%;
  border: 2px solid var(--color-cyan);
}

.logo-text {
  font-family: var(--font-cyber);
  font-size: 2.8rem; /* Largest as requested */
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #fff 30%, var(--color-cyan) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(0, 243, 255, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-cyber);
  font-size: 1rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--color-cyan);
  text-shadow: var(--glow-cyan);
}

/* Loop Line Buttons */
.loop-btn {
  position: relative;
  color: #fff !important;
  background: #070714;
  border-radius: 6px;
  border: none;
  padding: 12px 28px;
  font-family: var(--font-cyber);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
  transition: 0.3s;
  text-decoration: none;
}

.loop-btn:hover {
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.5);
  text-shadow: 0 0 5px rgba(255, 0, 127, 0.8);
}

.loop-btn::before {
  content: '';
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #070714;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: 
    linear-gradient(var(--color-cyan), var(--color-cyan)), 
    linear-gradient(var(--color-pink), var(--color-pink)), 
    linear-gradient(var(--color-purple), var(--color-purple)), 
    linear-gradient(var(--color-cyan), var(--color-cyan));
  animation: rotate-border 4s linear infinite;
}

.loop-btn::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #070714;
  border-radius: 4px;
  transition: 0.3s;
}

.loop-btn:hover::after {
  background: #111126;
}

@keyframes rotate-border {
  100% {
    transform: rotate(360deg);
  }
}

/* Secondary Loop Button (Pink themed) */
.loop-btn-sec {
  position: relative;
  color: #fff !important;
  background: #070714;
  border-radius: 6px;
  border: none;
  padding: 12px 28px;
  font-family: var(--font-cyber);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
  transition: 0.3s;
  text-decoration: none;
}

.loop-btn-sec:hover {
  box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
  text-shadow: 0 0 5px rgba(0, 243, 255, 0.8);
}

.loop-btn-sec::before {
  content: '';
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #070714;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: 
    linear-gradient(var(--color-pink), var(--color-pink)), 
    linear-gradient(var(--color-cyan), var(--color-cyan)), 
    linear-gradient(var(--color-purple), var(--color-purple)), 
    linear-gradient(var(--color-pink), var(--color-pink));
  animation: rotate-border 4s linear infinite;
}

.loop-btn-sec::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #070714;
  border-radius: 4px;
  transition: 0.3s;
}

.loop-btn-sec:hover::after {
  background: #111126;
}

/* Sections General */
section {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-height: calc(100vh - 100px);
}

.hero-content {
  flex: 1;
  max-width: 650px;
}

.hero-tag {
  font-family: var(--font-cyber);
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(0, 243, 255, 0.1);
  padding: 6px 15px;
  border-radius: 4px;
  border-left: 3px solid var(--color-cyan);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual-container {
  position: relative;
  width: 450px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.6));
  animation: pulseLogo 6s ease-in-out infinite alternate;
  border-radius: 50%;
  border: 4px solid var(--color-cyan);
  background: #000;
}

.hud-ring-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--color-cyan);
  border-radius: 50%;
  animation: rotateRing 20s linear infinite;
  opacity: 0.5;
}

.hud-ring-2 {
  position: absolute;
  width: 85%;
  height: 85%;
  border: 1px dashed var(--color-pink);
  border-radius: 50%;
  animation: rotateRing 15s linear infinite reverse;
  opacity: 0.4;
}

@keyframes pulseLogo {
  0% {
    transform: scale(0.96) rotate(-2deg);
    filter: drop-shadow(0 0 25px rgba(0, 243, 255, 0.4));
  }
  100% {
    transform: scale(1.04) rotate(2deg);
    filter: drop-shadow(0 0 45px rgba(255, 0, 127, 0.7));
  }
}

@keyframes rotateRing {
  100% {
    transform: rotate(360deg);
  }
}

/* Pricing Section - Packages Moved Up */
.pricing-section {
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.price-card {
  background: var(--bg-card);
  border: var(--border-neon);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-pink);
  box-shadow: 0 10px 30px rgba(255, 0, 127, 0.25);
  background: var(--bg-card-hover);
}

.price-card.popular {
  border-color: var(--color-pink);
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.15);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-cyber);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-pink);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-icon {
  font-size: 2.5rem;
  color: var(--color-cyan);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px var(--color-cyan));
}

.plan-name {
  font-family: var(--font-cyber);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.price-box {
  margin-bottom: 25px;
}

.price-box .currency {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: top;
  color: var(--color-cyan);
}

.price-box .amount {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-cyber);
  color: #fff;
}

.price-box .period {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 35px;
}

.features-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li::before {
  content: '⚡';
  color: var(--color-cyan);
}

.price-card .loop-btn {
  width: 100%;
}

/* Features Grid */
.features-section {
  background: rgba(5, 5, 10, 0.5);
}

.features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: var(--bg-card);
  border: var(--border-neon);
  padding: 35px 25px;
  border-radius: 8px;
  transition: 0.3s;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-cyan);
  transform: scaleX(0);
  transition: 0.3s;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--color-cyan);
  box-shadow: 0 10px 20px rgba(0, 243, 255, 0.15);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.2rem;
  color: var(--color-cyan);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--color-cyan));
}

.feature-title {
  font-family: var(--font-cyber);
  font-size: 1.25rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.feature-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Infinite Scrolling Review Carousel */
.reviews-section {
  overflow: hidden;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scrollTrack 30s linear infinite;
  gap: 30px;
}

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

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

.review-card {
  width: 380px;
  background: var(--bg-card);
  border: var(--border-neon);
  padding: 30px;
  border-radius: 10px;
  flex-shrink: 0;
  transition: 0.3s;
}

.review-card:hover {
  border-color: var(--color-pink);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.25);
  background: var(--bg-card-hover);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-cyan);
  padding: 2px;
}

.user-name {
  font-family: var(--font-cyber);
  font-size: 1rem;
  font-weight: 600;
}

.user-location {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.stars {
  color: #ffb700;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  font-style: italic;
}

/* FAQ Accordion Section */
.faq-section {
  max-width: 900px;
}

.faq-container {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-card);
  border: var(--border-neon);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item:hover {
  border-color: var(--color-cyan);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-cyber);
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  user-select: none;
}

.faq-question:hover {
  color: var(--color-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 25px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-icon {
  transition: transform 0.3s;
  color: var(--color-cyan);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-pink);
}

/* SEO Articles Formatting (for article pages) */
.article-header {
  text-align: center;
  padding: 80px 5% 40px;
  background: linear-gradient(180deg, rgba(13,13,26,0.6) 0%, rgba(5,5,10,0) 100%);
  border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.article-title {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.article-meta {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-cyber);
}

.article-body-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 5% 80px;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d1e0;
}

.article-content p {
  margin-bottom: 25px;
}

.article-content h2 {
  font-size: 1.8rem;
  color: var(--color-cyan);
  text-shadow: var(--glow-cyan);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,243,255,0.2);
  padding-bottom: 10px;
}

.article-content h3 {
  font-size: 1.4rem;
  color: var(--color-pink);
  text-shadow: var(--glow-pink);
  margin-top: 30px;
  margin-bottom: 15px;
}

.article-content ul, .article-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content strong {
  color: #fff;
}

.article-content a {
  color: var(--color-cyan);
  text-decoration: underline;
  transition: 0.3s;
}

.article-content a:hover {
  color: var(--color-pink);
  text-shadow: var(--glow-pink);
}

.article-cta-box {
  background: var(--bg-card);
  border: var(--border-neon);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 50px 0;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.article-cta-box h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.article-cta-box p {
  color: var(--color-text-muted);
  margin-bottom: 25px;
}

/* Footer PBN Linking Zone */
footer {
  border-top: 1px solid rgba(0, 243, 255, 0.15);
  background: #030307;
  padding: 40px 5%;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-cyan);
}

.footer-logo-text {
  font-family: var(--font-cyber);
  font-weight: 700;
  color: #fff;
  font-size: 1.5rem;
}

.pbn-links-zone {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
  font-size: 0.8rem; /* Small & low profile as requested */
}

.pbn-links-zone span {
  color: var(--color-text-muted);
}

.pbn-link {
  color: rgba(149, 149, 168, 0.6); /* blends in with text */
  text-decoration: none;
  transition: 0.3s;
}

.pbn-link:hover {
  color: var(--color-cyan);
  text-shadow: var(--glow-cyan);
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 3%;
  }
  .logo-text {
    font-size: 2.2rem;
  }
  .nav-links {
    display: none; /* simple hidden for mobile, or we could add a toggle */
  }
  
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-visual-container {
    width: 320px;
    height: 320px;
  }
  
  .hero-logo-img {
    width: 240px;
    height: 240px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .features-container {
    grid-template-columns: 1fr;
  }
  
  .review-card {
    width: 300px;
    padding: 20px;
  }
}
