/* Solutions Page Styles */

/* Solutions Hero Section - Matching Company Page */
.solutions-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.solutions-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/hero.png') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.solutions-hero .hero-content {
  position: relative;
  z-index: 1;
}

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

.solutions-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.solutions-hero .breadcrumb a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.solutions-hero .breadcrumb a:hover {
  opacity: 1;
}

.solutions-hero .breadcrumb-separator {
  opacity: 0.6;
  margin: 0 8px;
}

.solutions-hero .breadcrumb-current {
  opacity: 0.9;
}

.solutions-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
}

.solutions-hero .hero-subtitle {
  max-width: 800px;
  margin: 0 auto;
}

.solutions-hero .hero-subtitle p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin: 0;
  color: #ffffff;
  opacity: 0.95;
}

/* Solutions Overview Section */
.solutions-overview {
  background: #ffffff;
}

/* Main Solutions Grid */
.main-solutions {
  background: #f8fafc;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.solution-category {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.solution-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  border-color: #3b82f6;
}

.category-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 32px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border-radius: 16px;
  margin-bottom: 24px;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.category-description {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.services-list {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 24px;
}

.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  color: #64748b;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.service-features li::before {
  content: '•';
  color: #2563eb;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Industry Section */
.industry-section {
  background: #f8fafc;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.industry-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-color: #3b82f6;
}

.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  border-radius: 12px;
  margin-bottom: 24px;
}

.industry-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.industry-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.industry-features li {
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.industry-features li::before {
  content: '•';
  color: #2563eb;
  font-weight: 600;
  flex-shrink: 0;
}

/* Engagement Section */
.engagement-section {
  background: #ffffff;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.engagement-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  border-color: #3b82f6;
}

.engagement-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.engagement-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.engagement-subtitle {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

.engagement-features {
  padding: 24px;
}

.engagement-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.engagement-features li {
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.engagement-features li::before {
  content: '•';
  color: #2563eb;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.engagement-features li:last-child {
  margin-bottom: 0;
}

/* CTA Section */
.solutions-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
}

.solutions-cta-section .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.solutions-cta-section .cta-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
}

.solutions-cta-section .cta-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #ffffff;
  opacity: 0.9;
}

.solutions-cta-section .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .solutions-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .solutions-hero .hero-subtitle p {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .solutions-hero {
    padding: 100px 0 60px;
  }
  
  .solutions-hero .hero-title {
    font-size: 2.25rem;
  }
  
  .solutions-hero .hero-subtitle p {
    font-size: 1rem;
  }
  
  .solution-category {
    margin-bottom: 24px;
  }
  
  .category-header {
    padding: 24px;
  }
  
  .services-list {
    padding: 24px;
  }
  
  .industry-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
  }
  
  .industry-card {
    padding: 24px 20px;
  }
  
  .engagement-grid {
    grid-template-columns: 1fr;
  }
  
  .solutions-cta-section .cta-title {
    font-size: 1.875rem;
  }
  
  .solutions-cta-section .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .solutions-cta-section .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .solutions-hero .hero-title {
    font-size: 2rem;
  }
  
  .category-icon {
    width: 64px;
    height: 64px;
  }
  
  .industry-icon {
    width: 48px;
    height: 48px;
  }
  
  .engagement-header {
    padding: 20px;
  }
  
  .engagement-features {
    padding: 20px;
  }
}