/* Apply only to secondary pages */
body.secondary-page {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0f1c;
  color: #f0f0f0;
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

/* Top navigation bar - unified across all pages */
.top-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 40px;
  background: rgba(10, 15, 28, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  order: 2;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-btn, .cta-btn, .login-btn {
  background: linear-gradient(to right, #1a2b4f, #1e3a8a);
  border: 1px solid #2c3e70;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
}

.nav-btn:hover, .cta-btn:hover, .login-btn:hover {
  background: linear-gradient(to right, #1e3a8a, #2563eb);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
  .top-nav {
    padding: 15px 20px;
    position: relative;
  }

  .nav-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-right.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
  }
}


/* Animated gradient background */
body.secondary-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0f1c, #1a2b4f, #1e3a8a);
  background-size: 400% 400%;
  animation: gradientFlow 20s ease infinite;
  z-index: -1;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Section layout */
section {
  padding: 80px 20px;
  text-align: center;
}

/* Headings and text */
h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

p {
  font-size: 1.1rem;
  color: #cccccc;
}

/* Glassmorphism cards */
.card, .plan {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  padding: 30px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover, .plan:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #3a4a6b55;
}

/* Button style */
.cta-btn {
  background: linear-gradient(to right, #1a2b4f, #1e3a8a);
  border: 1px solid #2c3e70;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: linear-gradient(to right, #1e3a8a, #1a2b4f);
  box-shadow: 0 0 10px #2c3e7088;
}

/* Pricing grid */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #ccc;
}

.plan li {
  margin-bottom: 10px;
}

/* Forms */
.login-form, .signup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
  margin: 0 auto;
}

.login-form input, .signup-form input {
  padding: 10px;
  border: 1px solid #2c3e70;
  background: #1c2331;
  color: #fff;
  border-radius: 6px;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
  .card, .plan {
    width: 100%;
    max-width: 300px;
  }

  h2 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* NAVIGATION - Removed conflicting styles, using unified header styles above */

/* Push content below nav */
body.secondary-page section {
  margin-top: 120px;
}

/* Enhanced Pricing Page Styles */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-header p {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

/* Pricing Cards */
.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

/* Featured Plan */
.pricing-card.featured {
  border: 2px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: translateY(-10px) scale(1.07);
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Plan Icons */
.plan-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.basic-plan .plan-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.premium-plan .plan-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Plan Titles */
.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

/* Pricing */
.price {
  margin-bottom: 30px;
}

.currency {
  font-size: 1.5rem;
  color: #cbd5e1;
  vertical-align: top;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.period {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-left: 5px;
}

/* Plan Features */
.plan-features {
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding: 8px 0;
  color: #e2e8f0;
  font-size: 1rem;
}

.feature i {
  color: #3b82f6;
  width: 20px;
  text-align: center;
}

/* Plan Buttons */
.plan-btn {
  display: inline-block;
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.plan-btn:hover {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.basic-plan .plan-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.basic-plan .plan-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.premium-plan .plan-btn {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.premium-plan .plan-btn:hover {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* What's Included Section */
.whats-included {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  margin: 80px auto;
  max-width: 1000px;
  text-align: center;
}

.whats-included h3 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.included-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.included-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.included-item i {
  font-size: 1.5rem;
  color: #3b82f6;
  width: 30px;
  text-align: center;
}

.included-item span {
  color: #e2e8f0;
  font-weight: 500;
}

/* Feature Comparison */
.feature-comparison {
  margin: 80px auto;
  max-width: 1200px;
  text-align: center;
}

.feature-comparison h3 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.comparison-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.comparison-item h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}

.comparison-item p {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 1rem;
}

/* Contact Section */
.contact-section {
  text-align: center;
  margin-top: 80px;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-section h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-section p {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .pricing-header h2 {
    font-size: 2.2rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
  }
  
  .amount {
    font-size: 2.8rem;
  }
  
  .whats-included,
  .feature-comparison {
    margin: 60px auto;
    padding: 30px 20px;
  }
  
  .included-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-section {
    margin-top: 60px;
    padding: 40px 20px;
  }
}

@media screen and (max-width: 480px) {
  .pricing-header {
    margin-bottom: 40px;
  }
  
  .pricing-header h2 {
    font-size: 1.8rem;
  }
  
  .pricing-header p {
    font-size: 1rem;
  }
  
  .plan-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .amount {
    font-size: 2.2rem;
  }
  
  .feature {
    font-size: 0.9rem;
  }
}