/* Custom CSS for <?php echo $data['productName'] ?? "HELP";?> */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Logo */
.logo {
  height: 40px;
  width: auto;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.hero-buttons .btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  transform: translateY(-2px);
}

.hero-buttons .btn-outline-dark:hover {
  transform: translateY(-2px);
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.feature-nav-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all 0.3s ease;
}

.feature-nav-btn:hover {
  transform: scale(1.1);
}

.feature-nav-btn.active {
  background-color: #0d6efd;
  color: white;
}

/* Templates Section */
.templates-section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.template-card {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.template-icon img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.template-card .badge {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
}

/* Carousel Section */
.carousel-section {
  padding: 80px 0;
}

.service-card {
  border: none;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon i {
  font-size: 2rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
}

.cta-card {
  padding: 4rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.cta-bg-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 50%;
  opacity: 0.6;
}

.cta-bg-circle-1 {
  top: -100px;
  left: -100px;
}

.cta-bg-circle-2 {
  bottom: -100px;
  right: -100px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: #6c757d;
}

.cta-image {
  max-width: 200px;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid #e9ecef;
}

.footer-title {
  font-weight: 600;
  color: #212529;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0d6efd;
}

.footer-description {
  color: #6c757d;
  line-height: 1.7;
}

.footer-copyright {
  color: #adb5bd;
  font-size: 0.875rem;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  color: #6c757d;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #0d6efd;
  color: white;
  transform: translateY(-2px);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 3px solid white;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.floating-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .floating-buttons {
    bottom: 15px;
    left: 15px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  
  .floating-btn img {
    width: 24px;
    height: 24px;
  }
}

/* Custom animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.template-card,
.service-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom button styles */
.btn-primary {
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.btn-outline-dark {
  border: 2px solid #212529;
  color: #212529;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #212529;
  color: white;
  border-color: #212529;
}

/* Pricing Page Styles */
.pricing-hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0 60px;
}

.billing-toggle .btn-group {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.billing-toggle .btn {
  padding: 12px 24px;
  font-weight: 600;
  border: none;
}

.billing-toggle .btn-check:checked + .btn {
  background-color: #0d6efd;
  color: white;
}

.pricing-plans-section {
  padding: 60px 0;
}

.pricing-card {
  border: 2px solid #e9ecef;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: #0d6efd;
}

.pricing-card-popular {
  border-color: #ffc107;
  transform: scale(1.05);
}

.pricing-card-popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.popular-badge .badge {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.plan-icon i {
  font-size: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
}

.plan-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #0d6efd;
}

.price-period {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
}

.plan-description {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

.plan-features {
  text-align: left;
}

.plan-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.features-comparison-section {
  padding: 80px 0;
}

.comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table th {
  font-weight: 600;
  padding: 1.5rem 1rem;
  border: none;
}

.comparison-table td {
  padding: 1.25rem 1rem;
  vertical-align: middle;
  border-color: #e9ecef;
}

.comparison-table tbody tr:hover {
  background-color: #f8f9fa;
}

.faq-section {
  padding: 80px 0;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.accordion-button {
  background: white;
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #212529;
}

.accordion-button:not(.collapsed) {
  background: #f8f9fa;
  color: #0d6efd;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 1.5rem;
  background: white;
  color: #6c757d;
  line-height: 1.7;
}

/* Active navigation link */
.nav-link.active {
  color: #0d6efd !important;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pricing-card-popular {
    transform: none;
  }
  
  .pricing-card-popular:hover {
    transform: translateY(-10px);
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .plan-icon {
    width: 60px;
    height: 60px;
  }
  
  .plan-icon i {
    font-size: 1.5rem;
  }
  
  .comparison-table {
    font-size: 0.875rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* Animation for pricing cards */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card {
  animation: slideInUp 0.6s ease-out;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(4) {
  animation-delay: 0.3s;
}

.pricing-card:nth-child(5) {
  animation-delay: 0.4s;
}

/* About Page Styles */
.about-hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0 60px;
}

.mission-section {
  padding: 80px 0;
}

.story-section {
  padding: 80px 0;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6c757d;
}

.values-section {
  padding: 80px 0;
}

.value-card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 2rem;
}

.team-section {
  padding: 80px 0;
}

.team-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-avatar {
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-section {
  padding: 80px 0;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Auth Pages Styles */
.auth-body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

.auth-section {
  padding: 60px 0;
}

.auth-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.auth-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
}

.auth-form .form-control {
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.auth-form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.auth-features-section {
  padding: 60px 0;
}

.feature-item {
  padding: 2rem 1rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
}

/* Service Page Styles */
.service-hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.service-icon-large {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon-large img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.service-title {
  font-size: 3rem;
  font-weight: 700;
  color: #212529;
}

.service-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  line-height: 1.7;
}

.service-buttons .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-demo-video {
  position: relative;
}

.video-placeholder {
  height: 300px;
  border: 2px dashed #dee2e6;
}

.service-features-section {
  padding: 80px 0;
}

.feature-card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.how-it-works-section {
  padding: 80px 0;
}

.step-card {
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.demo-section {
  padding: 80px 0;
}

.demo-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.demo-form .form-control,
.demo-form .form-select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #e9ecef;
}

.demo-results {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
}

.use-cases-section {
  padding: 80px 0;
}

.use-case-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.use-case-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-case-icon i {
  font-size: 1.5rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
  .service-title {
    font-size: 2.5rem;
  }
  
  .service-icon-large {
    width: 80px;
    height: 80px;
  }
  
  .service-icon-large img {
    width: 60px;
    height: 60px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .auth-title {
    font-size: 1.75rem;
  }
}

/* Animation for new elements */
.value-card,
.feature-card,
.use-case-card {
  animation: fadeInUp 0.6s ease-out;
}

.step-card {
  animation: fadeInUp 0.6s ease-out;
}

.step-card:nth-child(2) {
  animation-delay: 0.1s;
}

.step-card:nth-child(3) {
  animation-delay: 0.2s;
}

.step-card:nth-child(4) {
  animation-delay: 0.3s;
}
