/* Axolon-specific styles with enhancements from TallyPrime template */
.axolon-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: white;
  padding: 80px 0;
  border-radius: 15px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.axolon-hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('/Images/erp-network.png') no-repeat right center;
  opacity: 0.2;
  z-index: 1;
}

.axolon-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.axolon-logo-container {
  text-align: center;
  margin-bottom: 30px;
}

.axolon-logo-container img {
  max-width: 300px;
  height: auto;
}

.axolon-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.axolon-feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.axolon-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.axolon-feature-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 20px;
}

.axolon-modules-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.axolon-modules-table th {
  background-color: #2c3e50;
  color: white;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.axolon-modules-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #dddddd;
}

.axolon-modules-table tr:last-child td {
  border-bottom: none;
}

.axolon-modules-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.axolon-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  justify-content: center;
}

.axolon-industry-tag {
  background: #e6f2ff;
  color: #2c3e50;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.axolon-industry-tag:hover {
  background: #3498db;
  color: white;
}

.axolon-testimonials {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  margin: 40px 0;
}

.axolon-testimonial-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.axolon-client-logo {
  height: 50px;
  margin-right: 20px;
  object-fit: contain;
}

.axolon-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .axolon-pros-cons {
    grid-template-columns: 1fr;
  }
  
  .axolon-hero:before {
    width: 100%;
    opacity: 0.1;
  }
}

.axolon-pros-card, .axolon-cons-card {
  padding: 30px;
  border-radius: 10px;
}

.axolon-pros-card {
  background: #e6f7ee;
  border-left: 5px solid #00a86b;
}

.axolon-cons-card {
  background: #fde8e8;
  border-left: 5px solid #e74c3c;
}

.axolon-pros-card h3, .axolon-cons-card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
}

.axolon-pros-card h3 i {
  color: #00a86b;
  margin-right: 10px;
}

.axolon-cons-card h3 i {
  color: #e74c3c;
  margin-right: 10px;
}

.axolon-rating-container {
  display: flex;
  align-items: center;
  margin: 20px 0;
  justify-content: center;
}

.axolon-rating-stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-right: 15px;
}

.axolon-rating-text {
  font-weight: 600;
}

/* Implementation Timeline Styles */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.timeline-line {
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #3498db;
  z-index: 1;
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
  padding-left: 80px;
  z-index: 2;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 0 5px #f8f9fa;
}

.timeline-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-content h3 {
  margin-top: 0;
  color: #2c3e50;
}

/* Version Comparison Styles */
.axolon-version-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .axolon-version-comparison {
    grid-template-columns: 1fr;
  }
}

.axolon-version-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.axolon-version-card:hover {
  transform: translateY(-5px);
}

.axolon-version-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.axolon-version-header h3 {
  margin: 0 0 10px 0;
  color: #2c3e50;
}

.axolon-version-badge {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}

.axolon-version-card ul {
  padding-left: 20px;
}

.axolon-version-card li {
  margin-bottom: 10px;
}

/* Pricing Card Styles */
.axolon-pricing-card {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-top: 5px solid #3498db;
  max-width: 800px;
  margin: 0 auto;
}

.axolon-pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.axolon-pricing-feature i {
  color: #3498db;
  margin-right: 10px;
}

/* Steps Section Styles */
.steps-section {
  background: #f8f9fa;
  padding: 60px 0;
  margin: 40px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.step-card.highlighted {
  border: 2px solid #3498db;
  transform: scale(1.05);
}

.highlight-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #f1c40f;
  color: #2c3e50;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* FAQ Styles */
.faq-container {
  margin: 40px 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: white;
  border: none;
  border-left: 4px solid #3498db;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}

.faq-answer-content {
  padding: 20px;
}

/* Contact Section Styles */
.contact-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

.success-message {
  display: none;
  color: #00a86b;
  margin-top: 15px;
  font-weight: 600;
}

.info-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.info-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #2c3e50;
}

.info-content a {
  color: #3498db;
  text-decoration: none;
}

.info-content a:hover {
  text-decoration: underline;
}

/* Disclaimer Section */
.disclaimer-section {
  background: #f8f9fa;
  padding: 40px 0;
  border-top: 1px solid #eee;
}

.disclaimer-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.disclaimer-content h2 {
  margin-top: 0;
  color: #2c3e50;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#backToTop:hover {
  background: #2c3e50;
  transform: translateY(-3px);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 15px;
  z-index: 999;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-content p {
  margin: 0;
  flex-grow: 1;
}

.cookie-banner-content a {
  color: #3498db;
  text-decoration: none;
}

.cookie-banner-content a:hover {
  text-decoration: underline;
}

#accept-cookies {
  background: #3498db;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  margin-left: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#accept-cookies:hover {
  background: #2980b9;
}

/* Pulse Animation */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
  }
}

/* Loading Spinner */
.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  margin-left: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}