/* ============================================
   ERP CONSULTANT UAE - MAIN STYLESHEET
   ============================================ */

/* Variables */
:root {
  --primary-blue: #004080;
  --secondary-blue: #0066cc;
  --accent-blue: #62cff4;
  --dark-blue: #003366;
  --light-blue: #f0f8ff;
  --success-green: #00c851;
  --warning-orange: #ff9e00;
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #777777;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --border-radius: 10px;
  --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* Base Styles */
.erp-consultant-hero,
.consultant-role-section,
.consultant-need-section,
.consulting-services-section,
.comparison-section,
.industries-section,
.timeline-section,
.why-choose-section,
.faq-section,
.closing-cta-section {
  padding: 5rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  display: inline-block;
  color: var(--secondary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding: 0.3rem 1rem;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 20px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-large, .btn-xlarge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 64, 128, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-xlarge {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 64, 128, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 64, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 64, 128, 0); }
}

/* HERO SECTION */
.erp-consultant-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.erp-consultant-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('/Images/hero-pattern.svg') no-repeat;
  opacity: 0.1;
}

.consultant-hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.consultant-hero-text {
  flex: 1;
}

.consultant-hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white);
}

.consultant-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.4;
}

.consultant-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.consultant-key-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.key-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.key-point i {
  color: var(--accent-blue);
  font-size: 1.2rem;
}

.consultant-hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.consultant-hero-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.consultant-hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.consultant-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CONSULTANT ROLE SECTION */
.consultant-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.role-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.role-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.role-card.highlighted {
  border: 2px solid var(--accent-blue);
}

.role-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.role-card h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.role-card p {
  color: var(--text-medium);
  line-height: 1.6;
}

.highlight-badge {
  position: static;
  top: -10px;
  right: 20px;
  background: var(--warning-orange);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.consultant-differentiator {
  background: var(--light-blue);
  border-radius: var(--border-radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.differentiator-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.differentiator-content h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.differentiator-content p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

/* CONSULTANT NEED SECTION */
.consultant-need-section {
  background: var(--light-gray);
}

.need-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.scenario-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.scenario-card.highlighted {
  border: 2px solid var(--accent-blue);
}

.scenario-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--primary-blue);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.scenario-card h3 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.scenario-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.consultant-value-box {
  background: var(--primary-blue);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.consultant-value-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.consultant-value-box h3 i {
  color: var(--accent-blue);
}

.consultant-value-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

/* SERVICES SECTION */
.consulting-services-section {
  background: var(--white);
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.service-tab {
  padding: 0.875rem 1.75rem;
  background: var(--light-gray);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
}

.service-tab.active {
  background: var(--primary-blue);
  color: var(--white);
}

.service-tab:hover:not(.active) {
  background: var(--medium-gray);
}

.services-content {
  display: none;
}

.services-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-details {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.service-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.service-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.service-features i {
  color: var(--success-green);
  margin-top: 0.25rem;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.vendor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.vendor-item img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.vendor-item span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.evaluation-approach {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 1.5rem 0;
  font-style: italic;
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-blue);
}

/* COMPARISON SECTION */
.comparison-section {
  background: var(--light-gray);
}

.comparison-table {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.comparison-header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--primary-blue);
  color: var(--white);
  padding: 1.5rem 2rem;
}

.comparison-column h3 {
  margin: 0;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--medium-gray);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-column {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.comparison-item.positive i {
  color: var(--success-green);
}

.comparison-item.negative i {
  color: #dc3545;
}

.comparison-conclusion {
  background: var(--light-blue);
  border-radius: var(--border-radius);
  padding: 2rem;
  border-left: 5px solid var(--accent-blue);
}

.comparison-conclusion h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comparison-conclusion h3 i {
  color: var(--warning-orange);
}

.comparison-conclusion p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
  font-size: 1.1rem;
}

/* INDUSTRIES SECTION */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.industry-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.industry-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.industry-card h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.industry-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.industry-note {
  background: var(--light-blue);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border-left: 4px solid var(--accent-blue);
}

.industry-note p {
  margin: 0;
  color: var(--text-medium);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.industry-note i {
  color: var(--primary-blue);
  margin-top: 0.25rem;
}

/* TIMELINE SECTION */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--medium-gray);
  transform: translateX(-50%);
}

.timeline-phase {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-phase:last-child {
  margin-bottom: 0;
}

.phase-number {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-phase.highlighted .phase-number {
  background: var(--accent-blue);
  color: var(--dark-blue);
}

.phase-content {
  flex: 1;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.timeline-phase.highlighted .phase-content {
  border: 2px solid var(--accent-blue);
}

.phase-content h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.phase-duration {
  color: var(--secondary-blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.phase-content p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.timeline-note {
  background: var(--light-blue);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-note p {
  margin: 0;
  color: var(--text-medium);
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.timeline-note i {
  color: var(--primary-blue);
  font-size: 1.2rem;
}

/* WHY CHOOSE SECTION */
.why-choose-section {
  background: var(--light-gray);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.advantage-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.advantage-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.advantage-card h3 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.advantage-card p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.collaboration-note {
  background: var(--primary-blue);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.collaboration-icon {
  font-size: 3rem;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.collaboration-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.collaboration-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.collaboration-content strong {
  color: var(--accent-blue);
}

/* FAQ SECTION */
.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--box-shadow-hover);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: var(--light-gray);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--medium-gray);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 1.5rem 2rem;
  margin: 0;
  color: var(--text-medium);
  line-height: 1.6;
  background: var(--white);
  border-top: 1px solid var(--medium-gray);
}

/* CLOSING CTA SECTION */
.closing-cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: var(--white);
  padding: 6rem 0;
}

.closing-cta-card {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.closing-cta-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-description {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.benefit i {
  color: var(--accent-blue);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-note {
  opacity: 0.9;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.cta-note i {
  color: var(--accent-blue);
}

.cta-note strong {
  font-weight: 700;
}

/* CONTACT SECTION (Using existing styles from contact-form.css) */
.contact-section-v2 {
  background: var(--light-gray);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .consultant-hero-content,
  .service-details {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .consultant-hero-content,
  .service-details,
  .consultant-differentiator,
  .collaboration-note {
    flex-direction: column;
  }
  
  .consultant-hero-text,
  .consultant-hero-image,
  .service-image,
  .service-info {
    width: 100%;
  }
  
  .consultant-hero-image {
    transform: none;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .differentiator-icon,
  .collaboration-icon {
    font-size: 2.5rem;
  }
  
  .timeline::before {
    left: 25px;
  }
  
  .phase-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .erp-consultant-hero,
  .consultant-role-section,
  .consultant-need-section,
  .consulting-services-section,
  .comparison-section,
  .industries-section,
  .timeline-section,
  .why-choose-section,
  .faq-section,
  .closing-cta-section {
    padding: 4rem 0;
  }
  
  .consultant-hero-text h1 {
    font-size: 2.2rem;
  }
  
  .consultant-subtitle {
    font-size: 1.2rem;
  }
  
  .consultant-key-points {
    grid-template-columns: 1fr;
  }
  
  .consultant-hero-cta,
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .services-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .service-tab {
    white-space: nowrap;
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .comparison-column {
    padding: 1rem;
  }
  
  .timeline::before {
    display: none;
  }
  
  .timeline-phase {
    flex-direction: column;
    gap: 1rem;
  }
  
  .phase-number {
    align-self: flex-start;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-benefits {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .closing-cta-card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .consultant-hero-text h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .consultant-role-grid,
  .need-scenarios,
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .role-card,
  .scenario-card,
  .industry-card,
  .advantage-card {
    padding: 1.5rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
}

/* Print Styles */
@media print {
  .whatsapp-float,
  .mobile-menu-btn,
  .cta-buttons a,
  .services-tabs {
    display: none !important;
  }
  
  .erp-consultant-hero {
    background: white !important;
    color: black !important;
  }
  
  .consultant-hero-text h1 {
    color: black !important;
  }
  
  a {
    color: black !important;
    text-decoration: underline;
  }
}

/* ============================= */
/* Authority Section */
/* ============================= */

.authority-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.authority-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.authority-card:hover {
  transform: translateY(-6px);
}

.authority-card.highlighted {
  border: 2px solid #004080;
  transform: scale(1.03);
}

.authority-icon {
  font-size: 34px;
  color: #004080;
  margin-bottom: 15px;
}

.authority-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.authority-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.highlight-badge {
  margin-top: 12px;
  display: flex;
  padding: 6px 14px;
  font-size: 12px;
  background: #004080;
  color: #fff;
  border-radius: 50px;
}

.authority-bottom {
  margin-top: 60px;
  text-align: center;
}

.authority-statement h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #003366;
}

.authority-statement p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ============================= */
/* Mobile Responsive */
/* ============================= */

@media (max-width: 1024px) {
  .authority-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .authority-section {
    padding: 60px 15px;
  }

  .authority-grid {
    grid-template-columns: 1fr;
  }

  .authority-card.highlighted {
    transform: none;
  }

  .authority-card {
    padding: 25px 20px;
  }

  .authority-statement h3 {
    font-size: 18px;
  }

  .authority-statement p {
    font-size: 14px;
  }
}

/* ============================= */
/* Strategic ERP Internal Links */
/* ============================= */

.erp-strategic-links {
  padding: 80px 20px;
  background: #ffffff;
}

.erp-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.erp-link-card {
  display: block;
  background: #f4f7fb;
  padding: 30px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.erp-link-card:hover {
  background: #eaf1f9;
  transform: translateY(-6px);
  border-color: #004080;
}

.erp-link-card.highlighted {
  background: #004080;
  color: #fff;
}

.erp-link-card.highlighted .link-arrow {
  color: #fff;
}

.link-icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: #004080;
}

.erp-link-card.highlighted .link-icon {
  color: #fff;
}

.erp-link-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.erp-link-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.erp-link-card.highlighted p {
  color: #e5e5e5;
}

.link-arrow {
  font-weight: 600;
  color: #004080;
}

.erp-links-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 15px;
}

.erp-links-bottom a {
  color: #004080;
  font-weight: 600;
  text-decoration: none;
}

.erp-links-bottom a:hover {
  text-decoration: underline;
}

/* ============================= */
/* Mobile Responsive */
/* ============================= */

@media (max-width: 1024px) {
  .erp-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .erp-strategic-links {
    padding: 60px 15px;
  }

  .erp-link-card {
    padding: 22px;
  }

  .erp-link-card h3 {
    font-size: 16px;
  }

  .erp-link-card p {
    font-size: 13px;
  }

  .erp-links-bottom {
    font-size: 14px;
  }
}

/* ============================= */
/* AI Search Optimization Section */
/* ============================= */

.ai-erp-optimization {
  padding: 80px 20px;
  background: #f3f7fc;
}

.ai-framework {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ai-step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.ai-step:hover {
  transform: translateY(-4px);
}

.ai-step-number {
  font-size: 22px;
  font-weight: 700;
  color: #004080;
  min-width: 45px;
}

.ai-step-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.ai-step-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.ai-step.highlighted {
  border-left: 5px solid #004080;
}

.ai-summary-box {
  margin-top: 50px;
  background: #004080;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.ai-summary-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.ai-summary-box p {
  font-size: 15px;
  line-height: 1.6;
}

/* ============================= */
/* Mobile Responsive */
/* ============================= */

@media (max-width: 768px) {

  .ai-erp-optimization {
    padding: 60px 15px;
  }

  .ai-step {
    flex-direction: column;
    padding: 20px;
  }

  .ai-step-number {
    font-size: 20px;
  }

  .ai-step-content h3 {
    font-size: 16px;
  }

  .ai-step-content p {
    font-size: 13px;
  }

  .ai-summary-box {
    padding: 22px;
  }

  .ai-summary-box h3 {
    font-size: 18px;
  }

  .ai-summary-box p {
    font-size: 14px;
  }
}

/* ============================================
   ERP CONSULTANT EXPERIENCE SECTION
   ============================================ */

.consultant-experience {
  background: var(--light-gray);
  padding: 5rem 0;
}

.experience-box {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.experience-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.experience-box h2 {
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.experience-box p {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.experience-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  text-align: left;
}

.experience-box ul li {
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.experience-box ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--success-green);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
  .experience-box {
    padding: 2.5rem;
  }

  .experience-box h2 {
    font-size: 2rem;
  }

  .experience-box ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .consultant-experience {
    padding: 4rem 0;
  }

  .experience-box {
    padding: 2rem;
  }

  .experience-box h2 {
    font-size: 1.8rem;
  }

  .experience-box p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .experience-box {
    padding: 1.5rem;
  }

  .experience-box h2 {
    font-size: 1.6rem;
  }
}

/* ============================================
   CONSULTANT AI SUMMARY SECTION
   ============================================ */

.consultant-ai-summary {
  background: linear-gradient(135deg, var(--light-blue), var(--white));
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
}

.consultant-ai-summary .container {
  max-width: 1000px;
}

.consultant-ai-summary p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-medium);
  text-align: center;
  font-weight: 500;
  position: relative;
  padding: 0.75rem 1.5rem;
}

/* Optional subtle left accent bar */
.consultant-ai-summary p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 4px;
  background: var(--primary-blue);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .consultant-ai-summary {
    padding: 1.2rem 0;
  }

  .consultant-ai-summary p {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    text-align: left;
  }

  .consultant-ai-summary p::before {
    display: none; /* cleaner on small screens */
  }
}

@media (max-width: 480px) {
  .consultant-ai-summary p {
    font-size: 0.95rem;
  }
}
