/* Innovations Page Styles */
 
/* Innovation Overview */
.innovation-overview {
  padding: 4rem 0;
  background: #f8f9fa;
}

.innovation-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.innovation-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #555;
}

/* Innovation Areas */
.innovation-areas {
  padding: 5rem 0;
  background: white;
}

.innovation-areas h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #2c5aa0;
  text-align: center;
  margin-bottom: 3rem;
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.innovation-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.innovation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5aa0, #4a90e2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.innovation-card:hover::before {
  transform: scaleX(1);
}

.innovation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.innovation-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.innovation-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.innovation-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.innovation-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: #e3f2fd;
  color: #1976d2;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Innovation Projects */
.innovation-projects {
  padding: 5rem 0;
  background: #f8f9fa;
}

.innovation-projects h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #2c5aa0;
  text-align: center;
  margin-bottom: 3rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-image {
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 1.5rem;
}

.project-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.status-ongoing {
  background: #e8f5e8;
  color: #2e7d32;
}

.status-pilot {
  background: #fff3e0;
  color: #f57c00;
}

.status-testing {
  background: #e3f2fd;
  color: #1976d2;
}

.project-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #2c5aa0;
  margin-bottom: 1rem;
}

.project-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.project-meta span {
  background: #f8f9fa;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Innovation Lab */
.innovation-lab {
  padding: 5rem 0;
  background: white;
}

.lab-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
}

.lab-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #2c5aa0;
  margin-bottom: 1.5rem;
}

.lab-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

.lab-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #2c5aa0;
  margin-bottom: 1rem;
}

.lab-activities {
  list-style: none;
  padding: 0;
}

.lab-activities li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  color: #555;
  line-height: 1.6;
}

.lab-activities li:last-child {
  border-bottom: none;
}

.lab-activities strong {
  color: #2c5aa0;
}

.lab-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.lab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Partnerships */
.partnerships {
  padding: 5rem 0;
  background: #f8f9fa;
}

.partnerships h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #2c5aa0;
  text-align: center;
  margin-bottom: 3rem;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.partner-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.partner-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #2c5aa0;
  margin-bottom: 1rem;
}

.partner-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.partner-card ul {
  list-style: none;
  padding: 0;
}

.partner-card li {
  padding: 0.5rem 0;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}

.partner-card li:last-child {
  border-bottom: none;
}

/* Get Involved */
.get-involved {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
  color: white;
}

.involvement-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.involvement-content > p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.involvement-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.option-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.option-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.option-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.option-card p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: white;
  color: #2c5aa0;
}

.btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: #2c5aa0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.5rem;
  }

  .page-hero p {
    font-size: 1.1rem;
  }

  .innovation-grid,
  .projects-grid,
  .partnerships-grid,
  .involvement-options {
    grid-template-columns: 1fr;
  }

  .lab-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lab-image {
    order: -1;
  }

  .innovation-areas h2,
  .innovation-projects h2,
  .partnerships h2,
  .involvement-content h2 {
    font-size: 2rem;
  }

  .innovation-intro h2,
  .lab-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 3rem 0;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .innovation-card,
  .partner-card,
  .option-card {
    padding: 1.5rem;
  }

  .project-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
