/* ERP Hero Section */
.erp-hero {
  background: linear-gradient(135deg, #006d77 0%, #83c5be 100%);
  color: white;
  padding: 5rem 0;
}

.erp-hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.erp-hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.erp-hero-text h1 span {
  color: #ffddd2;
}

.erp-hero-text .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.erp-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.feature-item i {
  color: #ffddd2;
}

.erp-hero-cta {
  display: flex;
  gap: 1rem;
}

.erp-hero-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ERP Benefits Section */
.erp-benefits {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2rem;
  color: #006d77;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #555;
  line-height: 1.6;
}

.benefit-card.highlighted {
  border: 2px solid #006d77;
}

.highlight-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  background: #006d77;
  color: white;
  padding: 0.3rem 2rem;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
  width: 160px;
  text-align: center;
}

/* ERP Services Section */
.erp-services {
  padding: 5rem 0;
}

.services-tabs {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.service-tab {
  padding: 0.8rem 1.5rem;
  background: #f1f1f1;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-tab.active {
  background: #006d77;
  color: white;
}

.service-tab:hover:not(.active) {
  background: #ddd;
}

.services-content {
  display: none;
}

.services-content.active {
  display: block;
}

.service-details {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.service-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #006d77;
}

.service-info p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features i {
  color: #006d77;
}

/* ERP Platforms Section */
.erp-platforms {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.platform-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.platform-card:hover {
  transform: translateY(-5px);
}

.platform-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.platform-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.platform-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.platform-card p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.platform-cta {
  margin-top: 1.5rem;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff9e00;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* AI-Powered ERP Matching Section */
.erp-ai {
  padding: 5rem 0;
  background: linear-gradient(135deg, #006d77 0%, #83c5be 100%);
  color: white;
}

.ai-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.ai-text {
  flex: 1;
}

.ai-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.ai-text h2 span {
  color: #ffddd2;
}

.ai-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.ai-features {
  margin-bottom: 2.5rem;
}

.ai-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ai-feature i {
  font-size: 1.5rem;
  color: #ffddd2;
  margin-top: 0.3rem;
}

.ai-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.ai-feature p {
  margin-bottom: 0;
  opacity: 0.8;
}

.ai-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Industry Specialization Section */
.erp-industries {
  padding: 5rem 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-icon {
  font-size: 2.5rem;
  color: #006d77;
  margin-bottom: 1.5rem;
}

.industry-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.industry-card p {
  color: #555;
  line-height: 1.5;
}

/* Testimonials Section */
.erp-testimonials {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote-icon {
  font-size: 2rem;
  color: #006d77;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.client-info p {
  font-style: normal;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0;
}

/* CTA Section */
.erp-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #006d77 0%, #83c5be 100%);
  color: white;
  text-align: center;
}

.erp-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.erp-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* FAQ Section */
.erp-faq {
  padding: 5rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: white;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .erp-hero-content,
  .service-details,
  .ai-content {
    flex-direction: column;
  }
  
  .erp-hero-text,
  .erp-hero-image,
  .service-image,
  .service-info,
  .ai-text,
  .ai-image {
    width: 100%;
  }
  
  .erp-hero-text {
    order: 1;
  }
  
  .erp-hero-image {
    order: 2;
  }
}

@media (max-width: 768px) {
  .erp-hero-text h1 {
    font-size: 2.2rem;
  }
  
  .erp-hero-cta,
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ERP Hero Section */
.erp-hero {
  background: linear-gradient(135deg, #006d77 0%, #83c5be 100%);
  color: white;
  padding: 5rem 0;
}

.erp-hero .hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.erp-hero .hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.erp-hero .hero-text h1 span {
  color: #ffddd2;
}

.erp-hero .hero-text .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.erp-hero .hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.erp-hero .feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}

.erp-hero .feature-item i {
  color: #ffddd2;
  font-size: 1.2rem;
}

.erp-hero .hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.erp-hero .hero-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Steps Section */
.steps-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: #006d77;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step-card p {
  color: #555;
  line-height: 1.6;
}

.step-card.highlighted {
  border: 2px solid #006d77;
  transform: translateY(-10px);
}

.highlight-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  background: #006d77;
  color: white;
  padding: 0.3rem 2rem;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
  width: 160px;
  text-align: center;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2rem;
  color: #006d77;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #555;
  line-height: 1.6;
}

.benefit-card.highlighted {
  border: 2px solid #006d77;
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff9e00;
  color: white;
  padding: 0.3rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* ERP Platforms Section */
.erp-platforms {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.platform-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.platform-card:hover {
  transform: translateY(-5px);
}

.platform-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.platform-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.platform-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.platform-card p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  padding: 0 1rem;
}

.platform-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.platform-features i {
  color: #006d77;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff9e00;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Compliance Section */
.compliance-section {
  padding: 5rem 0;
}

.compliance-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.compliance-text {
  flex: 1;
}

.compliance-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.compliance-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.compliance-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.compliance-features .feature {
  display: flex;
  gap: 1rem;
}

.compliance-features i {
  font-size: 1.5rem;
  color: #006d77;
  margin-top: 0.3rem;
}

.compliance-features h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.compliance-features p {
  margin-bottom: 0;
  font-size: 1rem;
}

.compliance-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Consultant Section */
.consultant-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.consultant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.consultant-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.consultant-card:hover {
  transform: translateY(-5px);
}

.consultant-icon {
  font-size: 2.5rem;
  color: #006d77;
  margin-bottom: 1.5rem;
}

.consultant-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.consultant-card p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.consultant-card ul {
  text-align: left;
  margin-top: 1.5rem;
}

.consultant-card li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.consultant-card i {
  color: #006d77;
}

/* Resources Box */
.resources-box {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.resources-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #006d77;
}

.resources-box ul {
  list-style: none;
}

.resources-box li {
  margin-bottom: 0.8rem;
}

.resources-box a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.resources-box a:hover {
  color: #006d77;
}

.resources-box i {
  color: #006d77;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .erp-hero .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .erp-hero .hero-content,
  .compliance-content {
    flex-direction: column;
  }
  
  .erp-hero .hero-text,
  .erp-hero .hero-image,
  .compliance-text,
  .compliance-image {
    width: 100%;
  }
  
  .erp-hero .hero-text {
    order: 1;
  }
  
  .erp-hero .hero-image {
    order: 2;
  }
  
  .compliance-text {
    order: 2;
    margin-top: 2rem;
  }
  
  .compliance-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  .erp-hero .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .erp-hero .hero-cta {
    flex-direction: column;
  }
  
  .platforms-grid {
    grid-template-columns: 1fr;
  }
  
  .consultant-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .erp-hero {
    padding: 3rem 0;
  }
  
  .erp-hero .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .highlight-badge {
    right: -70px;
    width: 180px;
    font-size: 0.7rem;
  }
}