/* PAGE HERO - INNOVATION DRIVEN */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg,
      rgba(207, 1, 6, 0.05) 0%,
      rgba(248, 249, 250, 1) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path fill="%23cf0106" fill-opacity="0.03" d="M200,0 C310.46,0 400,89.54 400,200 C400,310.46 310.46,400 200,400 C89.54,400 0,310.46 0,200 C0,89.54 89.54,0 200,0 Z M200,50 C118.43,50 50,118.43 50,200 C50,281.57 118.43,350 200,350 C281.57,350 350,281.57 350,200 C350,118.43 281.57,50 200,50 Z"></path></svg>') center/contain no-repeat;
  opacity: 0.5;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 20px;
  color: var(--medium-gray);
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}

/* INNOVATION CONTENT SECTIONS */
.innovation-intro {
  padding: 80px 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.innovation-content {
  max-width: 900px;
  margin: 0 auto;
}

.innovation-text {
  text-align: center;
  margin-bottom: 50px;
}

.innovation-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.innovation-text p {
  color: var(--medium-gray);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* INNOVATION PILLARS */
.innovation-pillars {
  padding: 80px 0;
  background-color: var(--off-white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border-top: 5px solid var(--primary-red);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pillar-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(207, 1, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-red);
  font-size: 30px;
}

.pillar-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.pillar-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* INNOVATION IN ACTION */
.innovation-action {
  padding: 80px 0;
  background-color: white;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.action-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.action-text p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
}

.action-features {
  list-style: none;
  margin-top: 25px;
}

.action-features li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.action-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
  font-size: 18px;
}

.action-visual {
  height: 400px;
  background: linear-gradient(135deg,
      var(--primary-blue) 0%,
      var(--dark-blue) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.action-visual-icon {
  font-size: 100px;
  color: white;
  opacity: 0.9;
  z-index: 2;
}

/* INNOVATION TEAMS */
.innovation-teams {
  padding: 80px 0;
  background-color: var(--off-white);
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.team-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(16, 64, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-blue);
  font-size: 24px;
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.team-card p {
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* JOIN OUR TEAM SECTION */
.join-section {
  padding: 80px 0;
  background: linear-gradient(135deg,
      var(--primary-blue) 0%,
      var(--dark-blue) 100%);
  color: white;
  text-align: center;
}

.join-section h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.join-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

/* APPLICATION FORM */
.application-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-title {
  text-align: center;
  margin-bottom: 30px;
}

.form-title h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.form-title p {
  color: var(--medium-gray);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(16, 64, 102, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.file-upload {
  border: 2px dashed var(--light-gray);
  padding: 30px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.file-upload:hover {
  border-color: var(--primary-blue);
  background-color: rgba(16, 64, 102, 0.05);
}

.file-upload i {
  font-size: 36px;
  color: var(--medium-gray);
  margin-bottom: 10px;
}

.file-upload p {
  color: var(--medium-gray);
  margin-bottom: 5px;
}

.file-upload small {
  color: var(--medium-gray);
  font-size: 12px;
}

.privacy-note {
  text-align: center;
  color: var(--medium-gray);
  font-size: 14px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

@media (max-width: 768px) {


  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 18px;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .join-section h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 32px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .action-text h3 {
    font-size: 28px;
  }

  .application-form {
    padding: 25px;
  }
}