/* ==================== Expertise Page Styles ==================== */

/* Hero Section */
.exp-hero-section {
  padding: 100px 0 40px;
  background: linear-gradient(135deg, #f8f9fb 0%, #fff 100%);
}

.exp-hero-top {
  text-align: center;
  margin-bottom: 30px;
}

.exp-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.exp-hero-description {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.exp-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  line-height: 1.2;
}

.exp-hero-subtitle {
  font-size: 20px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.exp-hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 25px 0;
}

.exp-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #1a1a2e;
  font-weight: 500;
}

.exp-feature-icon {
  width: 24px;
  height: 24px;
  background: #ce403d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-feature-icon svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

/* Navigation */
.exp-nav {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.exp-nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px 0;
  margin: 0;
  list-style: none;
}

.exp-nav-item a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.exp-nav-item a:hover,
.exp-nav-item a.active {
  background: #ce403d;
  color: #fff;
}

/* Expertise Sections */
.exp-section {
  padding: 50px 0;
  scroll-margin-top: 100px;
}

.exp-section-alt {
  background: #f8f9fb;
}

/* Two-Column Section Layout */
.exp-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.exp-section-content.reverse {
  direction: rtl;
}

.exp-section-content.reverse > * {
  direction: ltr;
}

.exp-section-image {
  border-radius: 20px;
  overflow: hidden;
}

.exp-section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.exp-section-info {
  padding: 20px 0;
}

.exp-section-header {
  text-align: left;
  margin-bottom: 25px;
}

.exp-section-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ce403d 0%, #e85a57 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(206, 64, 61, 0.25);
}

.exp-section-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.exp-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.exp-section-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Cards Grid */
.exp-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.exp-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.exp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #ce403d;
}

.exp-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.exp-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.exp-section-alt .exp-card {
  background: #fff;
}

/* CTA Section */
.exp-cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ce403d 0%, #e85a57 100%);
}

.exp-cta-content {
  text-align: center;
}

.exp-cta-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.exp-cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.exp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: #ce403d;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.exp-cta-btn:hover {
  background: #1a1a2e;
  color: #fff;
  transform: translateY(-3px);
}

.exp-cta-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .exp-hero-title {
    font-size: 42px;
  }

  .exp-hero-features {
    gap: 20px;
  }

  .exp-section-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .exp-section-content.reverse {
    direction: ltr;
  }

  .exp-section-header {
    text-align: center;
  }

  .exp-section-icon {
    margin: 0 auto 15px;
  }

  .exp-section-title {
    font-size: 28px;
  }

  .exp-nav-item a {
    padding: 10px 18px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .exp-hero-section {
    padding: 100px 0 40px;
  }

  .exp-hero-title {
    font-size: 32px;
  }

  .exp-hero-subtitle {
    font-size: 16px;
  }

  .exp-hero-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .exp-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .exp-section {
    padding: 40px 0;
  }

  .exp-section-title {
    font-size: 24px;
  }

  .exp-section-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .exp-section-icon img {
    width: 25px;
    height: 25px;
  }

  .exp-section-image {
    border-radius: 16px;
  }

  .exp-nav-list {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
  }

  .exp-nav-item {
    flex-shrink: 0;
  }

  .exp-cta-title {
    font-size: 28px;
  }

  .exp-cta-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .exp-hero-title {
    font-size: 28px;
  }

  .exp-card {
    padding: 18px;
  }
}
