/* -------------------------------------------------------
   Page Background
------------------------------------------------------- */
.gp-bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url('../img/bg.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top left;
  pointer-events: none;
}

/* All sections stack above background */
.gp-section {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
}

.gp-section .container-xl {
  /* max-width: 1200px; */
  max-width: 1100px;
}

.gp-section-1 {
  padding-top: 4rem;
}

/* -------------------------------------------------------
   Section Titles
------------------------------------------------------- */
.gp-page-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #5a3e8a;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.gp-section-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #5a3e8a;
  letter-spacing: -0.01em;
}

/* -------------------------------------------------------
   Cards — shared base
------------------------------------------------------- */
.gp-card {
  border-radius: 1rem;
  padding: 1.6rem 1.8rem;
}

/* Solid violet card (Vision) */
.gp-card-vision {
  background-color: #b49dc8;
  border: none;
  box-shadow: 0 8px 28px rgba(89, 66, 130, 0.22);
}

.gp-card-vision .gp-card-heading {
  color: #fff;
}

.gp-card-vision .gp-card-text {
  color: rgba(255, 255, 255, 0.93);
}

/* Light bordered cards (Mission, Identity, Core Values) */
.gp-card-light {
  background-color: #fdf8f5;
  border: 1.5px solid #d4c2e8;
  box-shadow: 0 6px 22px rgba(89, 66, 130, 0.10);
}

/* Card headings */
.gp-card-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: 0.01em;
}

.gp-card-heading-dark {
  color: #5a3e8a;
}

/* Card body text */
.gp-card-text {
  font-size: 0.95rem;
  line-height: 1.65;
}

.gp-card-text-dark {
  color: #6f6790;
}

/* -------------------------------------------------------
   Core Values list (Section 1)
------------------------------------------------------- */
.gp-values-list li {
  font-size: 0.97rem;
  color: #6f6790;
  line-height: 24px;
}

/* -------------------------------------------------------
   Section 2: Mentoring Model
------------------------------------------------------- */
.gp-section-2 {
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 1.5rem;
  margin: 0 1rem;
}

.gp-model-title {
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: #5a3e8a;
}

.gp-model-subtitle {
  font-size: 0.9rem;
  color: #8b78c5;
  font-weight: 500;
  margin-bottom: 0;
}

.gp-model-image-wrap {
  display: flex;
  justify-content: center;
  border-radius: 1rem;
  transition: transform 0.36s ease, filter 0.36s ease;
}

.gp-model-image {
  max-width: 900px;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.36s ease, filter 0.36s ease;
}

.gp-model-image-wrap:hover {
  transform: translateY(-8px) scale(1.08);
  filter: drop-shadow(0 26px 34px rgba(76, 54, 116, 0.3)) drop-shadow(0 8px 14px rgba(76, 54, 116, 0.18));
}

.gp-model-image-wrap:hover .gp-model-image {
  filter: saturate(1.05) contrast(1.03);
}

/* -------------------------------------------------------
   Section 3: Founder
------------------------------------------------------- */
.gp-founder-photo-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(89, 66, 130, 0.18);
  max-width: 280px;
  width: 100%;
  transition: transform 0.36s ease, box-shadow 0.36s ease, filter 0.36s ease;
}

.gp-founder-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: filter 0.36s ease;
}

.gp-founder-photo-wrap:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 16px 34px rgba(89, 66, 130, 0.26);
  filter: drop-shadow(0 26px 34px rgba(76, 54, 116, 0.3)) drop-shadow(0 8px 14px rgba(76, 54, 116, 0.18));
}

.gp-founder-photo-wrap:hover .gp-founder-photo {
  filter: saturate(1.06) contrast(1.02);
}

.gp-founder-quote {
  max-width: 320px;
  border: none;
  padding: 0 0.5rem;
}

.gp-founder-quote p {
  font-style: italic;
  color: #6f6790;
  font-size: 0.97rem;
  line-height: 1.6;
}

.gp-founder-quote-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5a3e8a;
}

.gp-founder-note {
  font-size: 0.72rem;
  color: #aaa4be;
  line-height: 1.5;
  border-top: 1px solid #e8dff5;
  padding-top: 0.75rem;
}

/* -------------------------------------------------------
   Section 4: Code of Ethics
------------------------------------------------------- */
.gp-ethics-list {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.gp-ethics-list li {
  font-size: 0.92rem;
  color: #6f6790;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.gp-ethics-list li:last-child {
  margin-bottom: 0;
}

.gp-download-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5a3e8a;
}

.gp-ethics-image-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(89, 66, 130, 0.18);
  max-width: 260px;
  width: 100%;
  transition: transform 0.36s ease, box-shadow 0.36s ease, filter 0.36s ease;
  cursor: pointer;
}

.gp-ethics-image {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.36s ease;
}

.gp-ethics-image-wrap:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 16px 34px rgba(89, 66, 130, 0.26);
  filter: drop-shadow(0 26px 34px rgba(76, 54, 116, 0.3)) drop-shadow(0 8px 14px rgba(76, 54, 116, 0.18));
}

.gp-ethics-image-wrap:hover .gp-ethics-image {
  filter: saturate(1.06) contrast(1.02);
}

/* -------------------------------------------------------
   Responsive tweaks
------------------------------------------------------- */
@media (max-width: 767.98px) {
  .gp-section {
    padding: 2rem 0;
  }

  .gp-section-2 {
    margin: 0;
  }

  .gp-founder-photo-wrap {
    max-width: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gp-model-image-wrap,
  .gp-model-image,
  .gp-founder-photo-wrap,
  .gp-founder-photo,
  .gp-ethics-image-wrap,
  .gp-ethics-image {
    transition: none;
  }

  .gp-model-image-wrap:hover,
  .gp-model-image-wrap:hover .gp-model-image,
  .gp-founder-photo-wrap:hover,
  .gp-founder-photo-wrap:hover .gp-founder-photo,
  .gp-ethics-image-wrap:hover,
  .gp-ethics-image-wrap:hover .gp-ethics-image {
    transform: none;
  }
}
