/* business.css – page-specific styles */

/* Ensure particle background never blocks interactions */
#particles-js { pointer-events: none; }


/* Navigation styles removed — now inherited from navbar.css */

/* Ensure content sits below fixed navbar */
.business-wrapper {
  padding-top: calc(var(--nav-height) + 0.5rem);
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
  margin-bottom: 2rem;
}

.tab-button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.tab-button.active,
.tab-button:hover {
  background: #09afa5;
  color: #fff;
}

/* Tab Content */
.tab-content { display: none; margin-top: 20px; min-height: 500px; }
.tab-content.active { display: block; }


.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.section-header h1 {
  font-size: clamp(1.4rem, 2.7vw + 0.4rem, 2.1rem);
  margin-bottom: 0.6rem;
}

.section-header p {
  font-size: clamp(0.9rem, 1vw + 0.6rem, 1.05rem);
  color: #e0e0e0;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
}

.feature-box {
  background: rgba(15, 32, 39, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
}
.feature-box i {
  font-size: 2rem;
  color: #09afa5;
  margin-bottom: 8px;
}
.feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.feature-box p {
  font-size: 0.85rem;
  color: #c8c8c8;
}

/* Integration Steps */
.integration-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 2rem;
}
.integration-step {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(6px);
}
.integration-step:hover {
  background: #09afa5;
  transform: translateY(-3px);
}
.integration-step h4 { font-size: 1rem; }

/* Brand Products */
.brand-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  justify-items: center;
  margin: 0 auto 1.5rem;
  max-width: 700px;
}
.product-card {
  width: 100%;
  background: rgba(15, 32, 39, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  position: relative;
  box-shadow: 0 3px 10px rgba(0,0,0,0.35);
  transition: transform 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); }
.product-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}
.product-card h3 { margin-bottom: 8px; font-size: 1rem; }
.product-card p { font-size: 0.85rem; color: #c8c8c8; margin-bottom: 14px; }
.learn-more-btn {
  font-size: 0.85rem;
  display: inline-block;
  padding: 10px 22px;
  background: #09afa5;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.learn-more-btn:hover { background: #0e8a7f; }

/* Coming Soon Overlay */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.coming-soon-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .product-card { flex: 1 1 100%; }
}

/* Business Type Cards */
.business-header {
  text-align: center;
  margin: 10px auto 40px;
  max-width: 800px;
  padding: 0 20px;
}

.business-header h1 {
  font-size: 2.5em;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
}

.business-header p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.business-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.business-type-card {
  background: rgba(15, 32, 39, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
}

.business-type-card:hover {
  transform: translateY(-8px);
  border-color: rgba(9, 175, 165, 0.5);
  box-shadow: 0 20px 40px rgba(9, 175, 165, 0.15);
}



.card-icon {
  background: linear-gradient(135deg, #09afa5, #047a73);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(9, 175, 165, 0.3);
}

.card-icon i {
  font-size: 2.5em;
  color: #fff;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h2 {
  font-size: 1.8em;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 600;
}

.card-content p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 20px;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.feature-tag {
  background: rgba(9, 175, 165, 0.1);
  border: 1px solid rgba(9, 175, 165, 0.3);
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 0.9em;
  color: #09afa5;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.feature-tag.coming-soon {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
  color: #ffc107;
}

.business-type-card:hover .feature-tag {
  background: rgba(9, 175, 165, 0.2);
  border-color: rgba(9, 175, 165, 0.5);
}



/* Brand Content Section */
.brand-content-section {
  padding: 10px 20px 80px;
}

.back-button {
  color: #09afa5;
  cursor: pointer;
  font-size: 1.1em;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.back-button:hover {
  color: #fff;
  transform: translateX(-5px);
}

.back-button i {
  font-size: 1.2em;
}

/* Mobile Responsive for Business Cards */
@media (max-width: 768px) {
  .business-header {
    margin: 10px auto 30px;
  }
  
  .business-header h1 {
    font-size: 2em;
  }
  
  .business-header p {
    font-size: 1.1em;
  }
  
  .business-type-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .business-type-card {
    padding: 30px 20px;
    min-height: 350px;
  }
  
  .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }
  
  .card-icon i {
    font-size: 2.5em;
  }
  
  .card-content h2 {
    font-size: 1.6em;
  }
  
  .card-content p {
    font-size: 1em;
  }
  

  
  .brand-content-section {
    padding: 10px 20px 60px;
  }
  
  .back-button {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Pulse Logo Animation */
.pulse-logo {
  position: relative;
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

.pulse-logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(9, 175, 165, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 0 10px rgba(9, 175, 165, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 25px rgba(9, 175, 165, 0.8));
  }
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}
