/* Unified Design System for Information Pages */

/* Base Styles */
.info-page {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  min-height: 100vh;
  padding-top: 4rem;
}

/* Header Styles */
.info-header {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.info-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.info-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-nav {
  display: flex;
  gap: 1.5rem;
}

.info-nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.info-nav-link:hover {
  color: #f87171;
  background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.info-hero {
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.info-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.info-hero-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.2);
}

.info-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-hero-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Main Content */
.info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.info-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.3);
}

.info-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f87171;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-grid-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.info-grid-item:hover {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateY(-3px);
}

.info-grid-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-grid-icon {
  color: #f87171;
}

.info-grid-content {
  color: #94a3b8;
  line-height: 1.6;
}

/* Section Styles */
.info-section {
  margin-bottom: 3rem;
}

.info-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f87171;
  position: relative;
  padding-bottom: 0.75rem;
}

.info-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ef4444 0%, #b91c1c 100%);
  border-radius: 2px;
}

.info-content {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 1.1rem;
}

.info-content p {
  margin-bottom: 1.5rem;
}

.info-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.info-content li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.info-content li::before {
  content: '•';
  color: #f87171;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.info-highlight {
  background: rgba(239, 68, 68, 0.1);
  border-left: 3px solid #ef4444;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.info-highlight-title {
  font-weight: 600;
  color: #f87171;
  margin-bottom: 0.5rem;
}

/* Timeline */
.info-timeline {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.info-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #ef4444, #b91c1c);
}

.info-timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.info-timeline-item::before {
  content: '';
  position: absolute;
  left: -0.6rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border: 3px solid #0f172a;
}

.info-timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f1f5f9;
}

.info-timeline-content {
  color: #94a3b8;
}

/* Stats */
.info-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-stat-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.info-stat-card:hover {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateY(-3px);
}

.info-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.info-stat-label {
  color: #94a3b8;
  font-size: 1rem;
}

/* Contact Form */
.info-form {
  display: grid;
  gap: 1.5rem;
}

.info-form-group {
  display: flex;
  flex-direction: column;
}

.info-form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #f1f5f9;
}

.info-form-input,
.info-form-select,
.info-form-textarea {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #f1f5f9;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.info-form-input:focus,
.info-form-select:focus,
.info-form-textarea:focus {
  outline: none;
  border-color: #ef4444;
  background: rgba(15, 23, 42, 0.7);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.info-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.info-form-button {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
  align-self: flex-start;
}

.info-form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

/* FAQ Styles */
.info-faq-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.info-faq-item:hover {
  border-color: rgba(239, 68, 68, 0.2);
}

.info-faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #f1f5f9;
  transition: all 0.3s ease;
}

.info-faq-question:hover {
  background: rgba(239, 68, 68, 0.05);
}

.info-faq-question.active {
  background: rgba(239, 68, 68, 0.1);
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.info-faq-icon {
  transition: transform 0.3s ease;
  color: #f87171;
}

.info-faq-question.active .info-faq-icon {
  transform: rotate(180deg);
}

.info-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #94a3b8;
  line-height: 1.7;
}

.info-faq-answer.active {
  padding: 1.5rem;
  max-height: 500px;
}

/* Table of Contents */
.info-toc {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.info-toc-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f87171;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-toc-item {
  margin-bottom: 0.5rem;
}

.info-toc-link {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
}

.info-toc-link:hover {
  color: #f87171;
  background: rgba(255, 255, 255, 0.05);
}

.info-toc-link::before {
  content: '→';
  font-size: 0.8rem;
}

/* Footer */
.info-footer {
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  text-align: center;
}

.info-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  color: #94a3b8;
}

.info-footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.info-footer-link {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
}

.info-footer-link:hover {
  color: #f87171;
}

.info-footer-copyright {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-hero {
    padding: 5rem 1rem 3rem;
  }
  
  .info-hero-title {
    font-size: 2.25rem;
  }
  
  .info-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .info-nav {
    display: none;
  }
  
  .info-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .info-hero-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .info-hero-title {
    font-size: 2rem;
  }
  
  .info-stats {
    grid-template-columns: 1fr;
  }
  
  .info-form-button {
    width: 100%;
  }
}