/* Investors Page Specific Styles */
/* Builds upon existing style.css */

/* Hero Section */
.investor-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  background-color: #2ecc71;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Market Opportunity Section */
.market-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.market-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #e9ecef;
}

.market-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.market-icon {
  font-size: 36px;
  color: #3498db;
  margin-bottom: 15px;
}

.market-card h3 {
  font-size: 28px;
  color: #2c3e50;
  margin: 10px 0;
}

.market-card p {
  color: #7f8c8d;
  font-size: 15px;
}

.feature-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.feature-list i {
  color: #2ecc71;
  margin-right: 10px;
  font-size: 18px;
  margin-top: 3px;
}

/* Investment Section */
.invest-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.invest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.invest-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.invest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.invest-card.highlighted {
  border: 2px solid #3498db;
}

.invest-icon {
  font-size: 32px;
  color: #3498db;
  margin-bottom: 20px;
}

.invest-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.invest-card ul {
  margin: 0;
  padding: 0 0 0 20px;
}

.invest-card li {
  margin-bottom: 10px;
  color: #34495e;
  line-height: 1.5;
}

.invest-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: #3498db;
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* Metrics */
.metrics-container {
  background: #2c3e50;
  border-radius: 12px;
  padding: 40px;
  margin-top: 60px;
  color: white;
}

.metrics-container h3 {
  text-align: center;
  margin-bottom: 30px;
  color: white;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
}

.metric-item {
  padding: 20px;
}

.metric-number {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #3498db;
}

.metric-label {
  font-size: 16px;
  opacity: 0.9;
}

/* Use of Funds Section */
.use-section {
  padding: 80px 0;
  background: white;
}

.chart-container {
  max-width: 500px;
  margin: 0 auto;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.legend-item {
  display: flex;
  align-items: center;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin-right: 10px;
}

.legend-color.tech { background-color: #4e73df; }
.legend-color.marketing { background-color: #1cc88a; }
.legend-color.operations { background-color: #36b9cc; }
.legend-color.legal { background-color: #f6c23e; }

.roadmap {
  margin-top: 60px;
}

.roadmap h3 {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}

.roadmap-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-phase {
  background: #3498db;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: -60px auto 20px;
  position: relative;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.timeline-item ul {
  margin: 0;
  padding: 0 0 0 20px;
}

.timeline-item li {
  margin-bottom: 10px;
  color: #34495e;
  line-height: 1.5;
}

/* Investor Profile Section */
.investor-profile {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.profile-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.profile-icon {
  font-size: 36px;
  color: #3498db;
  margin-bottom: 15px;
}

.profile-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.profile-card p {
  color: #7f8c8d;
  font-size: 15px;
  line-height: 1.5;
}

.investment-terms {
  background: white;
  border-radius: 12px;
  padding: 40px;
  margin-top: 60px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.investment-terms h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.term-item {
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
}

.term-label {
  font-weight: 600;
  color: #7f8c8d;
  margin-bottom: 5px;
  font-size: 14px;
}

.term-value {
  font-weight: 700;
  color: #2c3e50;
  font-size: 18px;
}

.terms-note {
  text-align: center;
  margin-top: 30px;
  font-style: italic;
  color: #7f8c8d;
}

/* Investor CTA Section */
.investor-cta {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  padding: 80px 0;
  color: white;
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  font-size: 18px;
}

.investor-form {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

.investor-form input,
.investor-form select,
.investor-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
}

.investor-form textarea {
  min-height: 100px;
}

.form-footer {
  text-align: center;
  margin-top: 30px;
}

.form-note {
  font-size: 14px;
  color: #7f8c8d;
  margin-top: 15px;
}

.cta-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.2);
}

.sidebar-card h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 20px;
}

.sidebar-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-card li {
  margin-bottom: 15px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
}

.sidebar-card i {
  margin-right: 10px;
  font-size: 18px;
  color: white;
}

.sidebar-card a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.sidebar-card a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* FAQ Section */
.investor-faq {
  padding: 80px 0;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border: 1px solid #e9ecef;
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background: #f8f9fa;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #2c3e50;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question.active {
  background: #3498db;
  color: white;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.faq-answer p, 
.faq-answer ul, 
.faq-answer ol {
  padding: 0 20px 20px;
  margin: 0;
  color: #34495e;
  line-height: 1.6;
}

.faq-answer ul, 
.faq-answer ol {
  padding-left: 40px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .cta-container {
    grid-template-columns: 1fr;
  }
  
  .roadmap-timeline::before {
    display: none;
  }
  
  .timeline-phase {
    margin: 0 auto 20px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .investor-hero .hero-content {
    flex-direction: column;
  }
  
  .hero-text, .hero-image {
    width: 100%;
    text-align: center;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .feature-list li {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .market-grid,
  .invest-grid,
  .metrics-grid,
  .profile-grid,
  .terms-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-badge {
    font-size: 12px;
  }
}

.alert {
  padding: 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: opacity 0.5s ease-in-out;
}
.alert-success {
  background-color: #d4edda;
  color: #155724;
}
.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
}
.fade {
  opacity: 0;
}
.show {
  opacity: 1;
}
