/* About Section - Modern Layout (Compact) */
.about-section {
  background: #f8fafc;
  padding: 2.5rem 0;
}

.about-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dc2626;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-intro h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.about-subtitle {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

.about-main {
  max-width: 700px;
  margin: 0 auto;
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-content {
  text-align: center;
}

.story-lead {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 1rem;
  font-weight: 400;
}

.story-lead strong {
  color: #dc2626;
  font-weight: 600;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.about-values {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 3px solid #dc2626;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-2px);
}

.value-item i {
  color: #dc2626;
  font-size: 1.125rem;
}

.value-item span {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.875rem;
}

.story-video-btn {
  background: transparent;
  border: 2px solid #dc2626;
  color: #dc2626;
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.story-video-btn:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.credentials-inline {
  position: relative;
  margin-top: 2rem;
}

.credentials-inline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #dc2626;
}

.credential-group {
  text-align: center;
  padding-top: 1.5rem;
}

.credential-group h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.credential:hover {
  background: #f1f5f9;
  border-color: #dc2626;
  transform: translateY(-1px);
}

.credential i {
  color: #dc2626;
  font-size: 1.25rem;
  width: 1.75rem;
  height: 1.75rem;
  text-align: center;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 0.375rem;
}

.credential span {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.3;
}

.credential strong {
  color: #1e293b;
  font-weight: 600;
}

.about-cta {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  margin-top: 2rem;
  border-radius: 0.75rem;
}

.cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-actions .btn {
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 2px solid transparent;
}

.cta-actions .btn-primary {
  background: #dc2626;
  color: white;
  border-color: #dc2626;
}

.cta-actions .btn-primary:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.cta-actions .btn-secondary {
  background: transparent;
  color: #dc2626;
  border-color: #dc2626;
}

.cta-actions .btn-secondary:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Story Modal */
.about-section .story-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  backdrop-filter: blur(4px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.about-section .story-modal.active {
  display: flex;
  visibility: visible;
  opacity: 1;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.about-section .story-modal .story-modal-content {
  background: white;
  border-radius: 0.75rem;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.about-section .story-modal.active .story-modal-content {
  transform: scale(1);
}

.about-section .story-modal .story-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 50%;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.about-section .story-modal .story-close:hover {
  background: #dc2626;
  transform: scale(1.1);
}

.story-video-container {
  padding: 1.5rem;
  text-align: center;
  background: #f8fafc;
  border-radius: 0.75rem 0.75rem 0 0;
}

.story-video-player {
  background: #000;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.story-video-player video {
  width: 100%;
  height: auto;
  display: block;
}

.story-video-placeholder {
  background: #e2e8f0;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  color: #64748b;
}

.story-video-placeholder i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #dc2626;
}

.story-video-placeholder h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.story-content {
  padding: 1.5rem;
}

.story-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.story-content blockquote {
  background: #f8fafc;
  border-left: 3px solid #dc2626;
  padding: 1.25rem;
  margin: 1rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: #475569;
  line-height: 1.6;
  font-size: 0.9rem;
}

.story-signature {
  text-align: right;
  margin-top: 1.5rem;
  font-weight: 600;
  color: #dc2626;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 2rem 0;
  }

  .about-intro h2 {
    font-size: 2rem;
  }

  .about-intro {
    margin-bottom: 1.5rem;
  }

  .about-story {
    gap: 1.5rem;
  }

  .story-lead {
    font-size: 1rem;
  }

  .story-content p {
    font-size: 0.95rem;
  }

  .about-values {
    gap: 1rem;
    margin: 1rem 0;
  }

  .value-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .credential-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .story-modal-content {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .about-intro h2 {
    font-size: 1.75rem;
  }

  .about-cta {
    padding: 1.25rem;
  }

  .cta-content h3 {
    font-size: 1.25rem;
  }

  .story-modal-content {
    margin: 0.75rem;
  }

  .story-content,
  .story-video-container {
    padding: 1.25rem;
  }
} 