/* =============================================================
   public/css/get-involved.css
   Durable Impact — Get Involved section (Contact Us, Join Our Team)
   Shared across both pages.
   Depends on public/css/styles.css (Poppins, variables, .btn-green)
   ============================================================= */

/* ══════════════════════════════════════════════════════════════
   SHARED INNER WRAPPER
   ══════════════════════════════════════════════════════════════ */
.gv-hero__inner,
.gv-contact__inner,
.gv-stay-connected__inner,
.gv-visit__inner,
.gv-cta-blocks__inner,
.gv-internship__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 110px;
}

/* ══════════════════════════════════════════════════════════════
   1. HERO  (shared)
   ══════════════════════════════════════════════════════════════ */
.gv-hero {
  position: relative;
  min-height: 77vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.gv-hero__bg {
  position: absolute;
  inset: 0;
}

.gv-hero__bg img {
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.gv-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.gv-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Sub-nav */
.gv-subnav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}

.gv-subnav__label {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

.gv-subnav__tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.gv-subnav__tab {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 8px 18px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.gv-subnav__tab:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.gv-subnav__tab--active {
  background: #7EBB55;
  color: #fff;
  border-color: #7EBB55;
}

.gv-hero__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gv-hero__title {
  font-family: var(--font-main);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.0;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT US — Form section
   Left: title + intro + WhatsApp QR
   Right: "Let's collaborate" label + form
   Mirrors the established form pattern across the site
   ══════════════════════════════════════════════════════════════ */
.gv-contact {
  background: #ffffff;
  padding: 112px 0;
}

.gv-contact__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.gv-contact__left {
  flex: 0 0 36%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gv-contact__title {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
  margin: 0;
}

.gv-contact__intro {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

.gv-contact__whatsapp img {
  width: 180px;
  height: auto;
  display: block;
  border-radius: 10px;
}

.gv-contact__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gv-contact__form-label {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

/* ── Form (same pattern used across the entire site) ───────── */
.gv-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gv-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gv-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gv-form__label {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.gv-form__input {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
}

.gv-form__input:focus {
  border-color: #7EBB55;
}

.gv-form__input::placeholder { color: #aaa; }

.gv-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.gv-form__submit {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
}

/* ══════════════════════════════════════════════════════════════
   JOIN OUR TEAM — Stay Connected
   Left: logo image + heading · Right: photo
   ══════════════════════════════════════════════════════════════ */
.gv-stay-connected {
  background: #ffffff;
  padding: 112px 0;
}

.gv-stay-connected__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.gv-stay-connected__left {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gv-stay-connected__logo img {
  height: 60px;
  width: auto;
  display: block;
}

.gv-stay-connected__title {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.05;
  margin: 0;
}

.gv-stay-connected__photo {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
}

.gv-stay-connected__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 14px;
}

/* ══════════════════════════════════════════════════════════════
   JOIN OUR TEAM — Visit Us
   Left: bold title + body · Right: photo
   Mirrors .making-impact-inner layout
   ══════════════════════════════════════════════════════════════ */
.gv-visit {
  background: var(--color-bg-light);
  padding: 112px 0;
}

.gv-visit__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.gv-visit__text {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gv-visit__title {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
  margin: 0;
}

.gv-visit__body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.75;
  margin: 0;
}

.gv-visit__photo {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
}

.gv-visit__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.gv-visit__photo:hover img { transform: scale(1.03); }

/* ══════════════════════════════════════════════════════════════
   JOIN OUR TEAM — Event Space + Impact Marketing CTAs
   Left: two stacked text/CTA blocks · Right: one photo
   ══════════════════════════════════════════════════════════════ */
.gv-cta-blocks {
  background: #ffffff;
  padding: 112px 0;
}

.gv-cta-blocks__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.gv-cta-blocks__left {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.gv-cta-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--color-border);
}

.gv-cta-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gv-cta-block__title {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0;
}

.gv-cta-block__body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

.gv-cta-blocks__photo {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  position: sticky;
  top: 100px; /* sticks while left column scrolls */
}

.gv-cta-blocks__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  aspect-ratio: 3/4;
}

/* ══════════════════════════════════════════════════════════════
   JOIN OUR TEAM — Apply for Impact Internship
   Left: heading + CTA button · Right: square photo
   ══════════════════════════════════════════════════════════════ */
.gv-internship {
  background: var(--color-bg-light);
  padding: 112px 0;
}

.gv-internship__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.gv-internship__text {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gv-internship__title {
  font-family: var(--font-main);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0;
}

.gv-internship__photo {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
}

.gv-internship__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.gv-internship__photo:hover img { transform: scale(1.03); }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL  (JS adds .gv-visible)
   ══════════════════════════════════════════════════════════════ */
.gv-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gv-reveal.gv-visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════════════
   JOIN OUR TEAM — Current Opportunities
   Centered layout, white background
   ══════════════════════════════════════════════════════════════ */
.gv-opportunities {
  background: #ffffff;
  padding: 112px 0;
  text-align: center;
}

.gv-opportunities__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.gv-opportunities__title {
  font-family: var(--font-main);
  font-size: 46px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
  margin: 0;
}

.gv-opportunities__body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.75;
  max-width: 760px;
  margin: 0;
}

.gv-opportunities__link {
  color: #7EBB55;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.gv-opportunities__link:hover { color: #5a9e38; }

/* ══════════════════════════════════════════════════════════════
   JOIN OUR TEAM — Why Work For Us
   Left: title + intro · Right: numbered list
   Light bg to contrast with white Opportunities section
   ══════════════════════════════════════════════════════════════ */
.gv-why {
  background: var(--color-bg-light);
  padding: 112px 0;
}

.gv-why__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 110px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.gv-why__left {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gv-why__title {
  font-family: var(--font-main);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.1;
  margin: 0;
}

.gv-why__body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.75;
  margin: 0;
}

.gv-why__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gv-why__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.gv-why__item:first-child { padding-top: 0; }
.gv-why__item:last-child  { border-bottom: none; padding-bottom: 0; }

.gv-why__num {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}

.gv-why__item-text {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   JOIN OUR TEAM — Equal Opportunity
   Left: text · Right: circular-clipped photo
   White background, mirrors site layout pattern
   ══════════════════════════════════════════════════════════════ */
.gv-equal {
  background: #ffffff;
  padding: 112px 0;
}

.gv-equal__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 110px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.gv-equal__text {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gv-equal__title {
  font-family: var(--font-main);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin: 0;
}

.gv-equal__body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.75;
  margin: 0;
}

.gv-equal__photo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gv-equal__photo img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — new sections
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gv-opportunities__inner,
  .gv-why__inner,
  .gv-equal__inner {
    padding-left: 60px;
    padding-right: 60px;
  }

  .gv-why__title    { font-size: 34px; }
  .gv-equal__title  { font-size: 30px; }
  .gv-opportunities__title { font-size: 38px; }
}

@media (max-width: 900px) {
  .gv-why__inner,
  .gv-equal__inner {
    flex-direction: column;
    gap: 48px;
  }

  .gv-why__left,
  .gv-equal__text {
    flex: none;
    width: 100%;
  }

  .gv-equal__photo { width: 100%; }
  .gv-equal__photo img { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 767px) {
  .gv-opportunities__inner,
  .gv-why__inner,
  .gv-equal__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gv-opportunities,
  .gv-why,
  .gv-equal { padding: 80px 0; }

  .gv-opportunities__title { font-size: 28px; }
  .gv-why__title           { font-size: 26px; }
  .gv-equal__title         { font-size: 24px; }
  .gv-why__num             { font-size: 18px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gv-hero__inner,
  .gv-contact__inner,
  .gv-stay-connected__inner,
  .gv-visit__inner,
  .gv-cta-blocks__inner,
  .gv-internship__inner {
    padding-left: 60px;
    padding-right: 60px;
  }

  .gv-contact__title,
  .gv-visit__title,
  .gv-internship__title { font-size: 38px; }

  .gv-stay-connected__title { font-size: 46px; }

  .gv-cta-blocks__photo { position: static; }
}

@media (max-width: 900px) {
  .gv-contact__inner,
  .gv-stay-connected__inner,
  .gv-visit__inner,
  .gv-cta-blocks__inner,
  .gv-internship__inner {
    flex-direction: column;
    gap: 48px;
  }

  .gv-contact__left,
  .gv-stay-connected__left,
  .gv-visit__text,
  .gv-cta-blocks__left,
  .gv-internship__text {
    flex: none;
    width: 100%;
  }

  .gv-cta-blocks__photo,
  .gv-internship__photo,
  .gv-stay-connected__photo,
  .gv-visit__photo {
    width: 100%;
  }

  .gv-internship__photo img { aspect-ratio: 4/3; }
}

@media (max-width: 767px) {
  .gv-hero__inner,
  .gv-contact__inner,
  .gv-stay-connected__inner,
  .gv-visit__inner,
  .gv-cta-blocks__inner,
  .gv-internship__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gv-contact,
  .gv-stay-connected,
  .gv-visit,
  .gv-cta-blocks,
  .gv-internship { padding: 80px 0; }

  .gv-subnav { flex-direction: column; align-items: flex-start; gap: 10px; }

  .gv-contact__title,
  .gv-visit__title { font-size: 30px; }

  .gv-stay-connected__title { font-size: 36px; }

  .gv-internship__title { font-size: 26px; }

  .gv-cta-block__title { font-size: 22px; }

  .gv-form__row { grid-template-columns: 1fr; }
}