/* =============================================
   PROJECTS PAGE – STYLESHEET
   ============================================= */

/* =============================================
   PROJECTS INTRO SECTION (full-width centered)
   ============================================= */
.projects-intro-section {
  background: #fff;
  padding: 8rem 2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.projects-intro-inner {
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

.projects-intro-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.projects-intro-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 680px;
}

/* =============================================
   PARTNER / PROJECT CARDS SECTION
   ============================================= */
.projects-section {
  background: #f9f9f9;
  padding: 8rem 2rem 5rem;
}

.projects-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-card {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
}

.project-logo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  padding: 8px;
}

.project-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.project-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.project-info p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.8;
  font-family: 'Poppins', sans-serif;
}

.projects-section .contact-pill-wrap {
  margin-top: 3rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 700px) {
  .projects-intro-section {
    padding: 7rem 1.5rem 4rem;
  }

  .projects-intro-inner {
    align-items: flex-start;
  }

  .project-card {
    flex-direction: column;
    text-align: center;
    gap: 1.1rem;
    padding: 2rem 1.5rem;
  }
}

/* =============================================
   PROJECTS – MOBILE OPTIMIZATIONS (≤480px)
   ============================================= */
@media (max-width: 480px) {
  .projects-intro-section { padding: 7rem 1.25rem 3rem; }
  .projects-intro-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .projects-intro-subtitle { font-size: 0.88rem; }

  .project-card { flex-direction: column; padding: 1.5rem 1.1rem; gap: 1rem; text-align: center; }
  .project-card-icon { margin: 0 auto; }
  .project-card-title { font-size: 1.1rem; }
  .project-card-desc { font-size: 0.88rem; }

  .projects-contact-section { padding: 3rem 1.25rem; }
  .projects-contact-form { padding: 1.5rem 1.1rem; }
  .about-form-row { grid-template-columns: 1fr; }
  .about-form-input, .about-form-select { font-size: 16px; }
}
