/* Warehouse Management AI Tools Styles */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="warehouse" patternUnits="userSpaceOnUse" width="100" height="100"><rect x="20" y="20" width="60" height="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/><rect x="30" y="30" width="10" height="10" fill="rgba(255,255,255,0.1)"/><rect x="50" y="30" width="10" height="10" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="3" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23warehouse)"/></svg>') repeat;
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button.primary {
  background: #f59e0b;
  color: white;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.cta-button.primary:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Quick Summary */
.quick-summary {
  padding: 80px 0;
  background: #f8fafc;
}

.summary-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.summary-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a202c;
}

.summary-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 3rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.summary-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.summary-item:hover {
  transform: translateY(-5px);
}

.summary-item i {
  font-size: 3rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.summary-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.summary-item p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Tools Section */
.tools-section {
  padding: 80px 0;
  background: white;
}

.tools-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tool-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tool-card.featured {
  border: 2px solid #1e3a8a;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.tool-logo img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tool-title h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.tool-subtitle {
  color: #1e3a8a;
  font-weight: 600;
  font-size: 1rem;
}

.tool-rating {
  margin-left: auto;
  text-align: right;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.rating-score {
  font-weight: 600;
  color: #1a202c;
  font-size: 0.9rem;
}

.tool-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.tool-description {
  color: #4a5568;
  line-height: 1.6;
}

.tool-description p {
  margin-bottom: 1.5rem;
}

.tool-features {
  margin: 1.5rem 0;
}

.tool-features h4 {
  color: #1a202c;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.tool-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.tool-features i {
  color: #10b981;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.tool-pricing {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f7fafc;
  border-radius: 10px;
  border-left: 4px solid #1e3a8a;
}

.tool-pricing h4 {
  color: #1a202c;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.tool-pricing p {
  margin: 0;
  font-weight: 600;
  color: #1e3a8a;
}

.tool-use-cases {
  margin: 1.5rem 0;
}

.tool-use-cases h4 {
  color: #1a202c;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.tool-use-cases p {
  margin: 0;
  font-style: italic;
  color: #4a5568;
}

.tool-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: #1e3a8a;
  color: white;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1e3a8a;
  border: 2px solid #1e3a8a;
}

.btn-secondary:hover {
  background: #1e3a8a;
  color: white;
  transform: translateY(-2px);
}

.tool-details {
  margin-top: 2rem;
  padding: 2rem;
  background: #f7fafc;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.detail-section h5 {
  color: #1a202c;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.detail-section p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Tool Card Alternative Layout */
.tool-card .tool-info {
  flex: 1;
}

.tool-card .tool-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.tool-card .tool-tagline {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tool-card .tool-rating .stars {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.tool-card .tool-rating .rating-text {
  font-size: 0.85rem;
  color: #4a5568;
}

.tool-card .tool-pricing {
  text-align: right;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

.tool-card .tool-pricing .price {
  display: block;
  font-weight: 700;
  color: #1e3a8a;
  font-size: 1.1rem;
}

.tool-card .tool-pricing .price-note {
  font-size: 0.8rem;
  color: #4a5568;
  font-weight: normal;
}

.tool-card .tool-content {
  display: block;
  margin-top: 1.5rem;
}

.tool-card .tool-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.tool-card .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tool-card .cta-button.primary {
  background: #1e3a8a;
  color: white;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.tool-card .cta-button.primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.tool-card .cta-button.secondary {
  background: transparent;
  color: #1e3a8a;
  border-color: #1e3a8a;
}

.tool-card .cta-button.secondary:hover {
  background: #1e3a8a;
  color: white;
  transform: translateY(-2px);
}

/* Comparison Table */
.comparison-section {
  padding: 80px 0;
  background: #f8fafc;
}

.comparison-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
  width: 100%;
  background: white;
  border-collapse: collapse;
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
  background: #1e3a8a;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table td {
  color: #4a5568;
  vertical-align: top;
}

.comparison-table tr:hover {
  background: #f7fafc;
}

.comparison-table strong {
  color: #1a202c;
  font-weight: 600;
}

/* Share Module */
.share-module {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.share-module h3 {
  color: #1a202c;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn.email {
  background: #10b981;
  color: white;
}

.share-btn.copy {
  background: #6b7280;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a202c;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f7fafc;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #1e3a8a;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  color: #4a5568;
  line-height: 1.6;
  display: none;
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .tool-header {
    flex-direction: column;
    text-align: center;
  }

  .tool-actions {
    justify-content: center;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .faq-container {
    width: 100%;
    padding: 0 1rem;
  }

  .share-buttons {
    flex-direction: column;
    align-items: center;
  }

  .share-btn {
    width: 200px;
    justify-content: center;
  }

  .comparison-table-wrapper {
    margin: 1rem -1rem;
  }
}
