/* PAGE HERO - COLLABORATIVE EXCELLENCE */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg,
      rgba(16, 64, 102, 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="%23104066" 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;
}

/* COLLABORATIVE EXCELLENCE CONTENT */
.collaborative-section {
  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;
}

.collaborative-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

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

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

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

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

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

.collaborative-visual {
  height: 400px;
  /*background: linear-gradient(135deg,*/
  /*    var(--primary-blue) 0%,*/
  /*    var(--dark-blue) 100%);*/
  background-image: url("../../public/img/collaborative-excellence-1.png");
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

/* COLLABORATION FRAMEWORK */
.framework-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

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

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

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

.framework-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;
}

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

.framework-card p {
  color: var(--medium-gray);
}

/* TEAM COLLABORATION EXAMPLES */
.examples-section {
  padding: 80px 0;
  background-color: white;
}

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

.example-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.example-item:nth-child(even) .example-text {
  order: 2;
}

.example-item:nth-child(even) .example-visual {
  order: 1;
}

.example-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.example-text p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.example-visual {
  height: 250px;
  background: linear-gradient(135deg,
      rgba(16, 64, 102, 0.1) 0%,
      rgba(207, 1, 6, 0.1) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.example-visual-icon {
  font-size: 60px;
  color: var(--primary-blue);
}

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

.join-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: var(--shadow);
}

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

.join-title h2 {
  color: var(--primary-blue);
  font-size: 32px;
}

.join-title p {
  color: var(--medium-gray);
  font-size: 18px;
}

.join-form {
  margin-top: 30px;
}

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

.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;
}

@media (max-width: 1024px) {
  .collaborative-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .example-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .example-item:nth-child(even) .example-text,
  .example-item:nth-child(even) .example-visual {
    order: unset;
  }

}

@media (max-width: 768px) {


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

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

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

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

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


}

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

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

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

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

  .collaborative-visual {
    height: 300px;
  }
}