/* ================
   HERO
   ================ */

.one-container .site-content {
  padding: 0px;
}

.partnership-hero {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #fff;
  height: 70vh;
  overflow: hidden;
}

/* soft dark overlay like design */
.partnership-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 15, 38, 0.85) 0%,
    rgba(7, 15, 38, 0.8) 45%,
    rgba(7, 15, 38, 0.9) 100%
  );
  z-index: 0;
}

.partnership-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-width, 1160px);
  margin: 0 auto;
  padding: 110px 16px 80px;
}

.partnership-hero-content {
}

.partnership-hero-title {
  font-size: 6.5rem;
  line-height: 1.15;
  margin: 0 0 0.4em;
  color: #fff;
}

.partnership-hero-subtitle {
  font-size: 2.6rem;
  margin: 0 0 1.8rem;
}

/* hero buttons */

.partnership-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--global-color-blue);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero-btn-primary {
  background: var(--global-color-blue);
  color: #fff;
}

.hero-btn-primary::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  background: url(../images/chevron-right.svg) center / contain no-repeat;
  transition: transform 220ms ease, filter 220ms ease;
}

.hero-btn-primary:hover {
  color: #fff;
}

.hero-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-btn-secondary:hover {
  color: #fff;
}

/* =========================
   DARK CONTENT SECTION
   ========================== */

.partnership-content {
  background: #262626;
  color: #fff;
  padding: 0;
  --gutter: max(0px, calc((100vw - var(--content-width)) / 2));
}

/* Breadcrumbs bar at top of section */
.partnership-content-breadcrumbs {
  max-width: var(--content-width, 1160px);
  margin: 0 auto;
  padding: 24px 24px 0 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.partnership-content-breadcrumbs p {
  margin: 0;
}

.partnership-content-breadcrumbs a {
  color: #fff;
  text-decoration: none;
}

.partnership-content-breadcrumbs a:hover {
  text-decoration: underline;
}
.partnership-content-inner {
  margin: 0 auto;
  display: flex;

  align-items: stretch; /* ✅ REQUIRED for full height sync */
  justify-content: space-between;
  gap: var(--bar-gap);

  flex-wrap: nowrap;

  margin-left: var(--gutter);
  margin-right: 0;
  width: calc(100% - var(--gutter));
  max-width: none;

  padding: 0;
}

.partnership-content-left {
  padding: 16px 24px 32px; /* ✅ only text side has padding */
}

.partnership-content-title {
  font-size: 2rem;
  margin: 0 0 1rem;
  color: #fff;
}

.partnership-copy {
  font-size: 1.5rem;
  line-height: 1.8;
}

.partnership-copy p {
  margin: 0 0 1em;
}

.partnership-content-right {
  flex: 0 0 35%;
  max-width: 35%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 260px;

  padding: 0; /* just to be extra sure */
  margin: 0;
}

/* =========================
   Partnership accordion – 
   ========================== */

.partnership-accordion-section {
  background: #ffffff;
  padding: 7rem 0;
}

.partnership-accordion-inner {
  max-width: var(--content-width, 1160px);
  margin: 0 auto;
  padding: 0 16px;
}

.partnership-accordion-title {
  font-size: 1.7rem;
  margin: 0 0 1.5rem;
}

/* list + dividers */

.partnership-accordion-section .values-list {
  max-width: 1024px;
  margin: 0 auto;
}

.partnership-accordion-section .value-item {
  border-bottom: 1px solid #e0e3ef;
}

.partnership-accordion-section .value-item:last-child {
  border-bottom: none;
}
/* row button */

.partnership-accordion-section .value-toggle {
  width: 100%;
  padding: 14px 0;
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.partnership-accordion-section .value-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--global-color-blue);
}

/* arrow icon – right (closed) / up (open) */

.partnership-accordion-section .value-toggle .icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

/* little chevron */
.partnership-accordion-section .value-toggle .icon::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-right: 2px solid var(--global-color-blue);
  border-bottom: 2px solid var(--global-color-blue);
  transform: rotate(-45deg); /* pointing right */
  transform-origin: center;
  transition: transform 180ms ease;
}

/* open state – arrow up */
.partnership-accordion-section .value-item.is-open .value-toggle .icon::before {
  transform: rotate(225deg); /* pointing up */
}

/* panel text */

.partnership-accordion-section .value-content {
  padding: 0 0 18px;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #000;
}

/* ================
   JOIN US SECTION
   ================ */

.partnership-join {
  background: var(--global-color-blue);
  color: #fff;
  padding: 60px 0 80px;
}

.partnership-join-inner {
  max-width: var(--content-width, 1160px);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.join-left {
  flex: 0 0 60%;
  max-width: 60%;
}

.join-right {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  justify-content: flex-end;
}

/* join text */

.join-title {
  font-size: 4rem;
  margin: 0 0 0.8rem;
  color: #fff;
}

.join-text {
  font-size: 1.5rem;
  line-height: 1.8;
}

/* white card for Gravity Form */

.join-right #gform_wrapper_3 {
  color: #111827;
  padding: 24px 24px 28px;
  max-width: 550px;
  width: 100%;
}

/* GF #3 styling: title off */

#gform_wrapper_3 .gform_title {
  color: #fff;
  font-size: 2rem;
}

#gform_wrapper_3 .gform_description {
  display: none;
}

/* labels */

#gform_wrapper_3 .gfield_label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 4px;
}

/* underline fields */

#gform_wrapper_3 input[type="text"],
#gform_wrapper_3 input[type="email"],
#gform_wrapper_3 input[type="tel"],
#gform_wrapper_3 textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.25);
  border-radius: 0;
  padding: 8px 0;
  font-size: 1.5rem;
  color: #fff;
}

/* placeholders white/grey-ish */

#gform_wrapper_3 input::placeholder,
#gform_wrapper_3 textarea::placeholder {
  color: #9ca3af;
  opacity: 1;
}

/* animated underline */

#gform_wrapper_3 .gfield {
  position: relative;
  margin-bottom: 18px;
}

#gform_wrapper_3 .gfield::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: #fff;
  transform-origin: left center;
  transform: scaleX(1);
  transition: height 140ms ease, transform 180ms ease;
}

#gform_wrapper_3 .gfield:focus-within::after {
  height: 2.5px; /* ✅ thicker on focus */
  transform: scaleX(1); /* keep full width */
}

/* focus border */

#gform_wrapper_3 input[type="text"]:focus,
#gform_wrapper_3 input[type="email"]:focus,
#gform_wrapper_3 input[type="tel"]:focus,
#gform_wrapper_3 textarea:focus {
  outline: none;
  border-bottom-color: var(--global-color-blue);
}

#gform_wrapper_3 .gform_required_legend {
  display: none;
}

#gform_wrapper_3 input[type="text"],
#gform_wrapper_3 input[type="email"],
#gform_wrapper_3 input[type="tel"],
#gform_wrapper_3 input[type="url"],
#gform_wrapper_3 textarea {
  border-bottom: none; /* ✅ underline handled by ::after only */
}

/* submit button */

#gform_wrapper_3 .gform_footer {
  margin-top: 8px;
}

#gform_wrapper_3 .gform_footer input[type="submit"] {
  width: 100%;
  background: #fff;
  color: var(--global-color-blue);
  border: none;
  padding: 16px 20px;
  border-radius: 0px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background-color 150ms ease, transform 120ms ease,
    box-shadow 120ms ease;
}

#gform_wrapper_3 .gform_footer input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* =========================
   Gravity Form – White placeholders
   ========================== */

/* Standard */
#gform_wrapper_3 input::placeholder,
#gform_wrapper_3 textarea::placeholder {
  color: #fff;
  opacity: 1; /* ✅ Firefox needs this */
  font-size: 1.5rem;
}

/* WebKit (Chrome, Edge, Safari) */
#gform_wrapper_3 input::-webkit-input-placeholder,
#gform_wrapper_3 textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 1.5rem;
}

/* Firefox */
#gform_wrapper_3 input::-moz-placeholder,
#gform_wrapper_3 textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 1.5rem;
}

/* IE / old Edge */
#gform_wrapper_3 input:-ms-input-placeholder,
#gform_wrapper_3 textarea:-ms-input-placeholder {
  color: #fff;
  font-size: 1.5rem;
}

/* =========================
   Normalize Website URL field to match others
   ========================== */

#gform_wrapper_3 .ginput_container_website input[type="url"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
  padding: 8px 0;
  font-size: 1.5rem;
  color: #fff;
}

/* Placeholder color – PURE WHITE */
#gform_wrapper_3 .ginput_container_website input::placeholder {
  color: #fff;
  opacity: 1;
  font-size: 1.5rem;
}

#gform_wrapper_3 .ginput_container_website input::-webkit-input-placeholder {
  color: #fff;
  font-size: 1.5rem;
}

#gform_wrapper_3 .ginput_container_website input::-moz-placeholder {
  color: #fff;
  font-size: 1.5rem;
}

#gform_wrapper_3 .ginput_container_website input:-ms-input-placeholder {
  color: #fff;
  font-size: 1.5rem;
}

#gform_wrapper_3
  .gfield_validation_message:where(
    :not(.gform-theme__disable):not(.gform-theme__disable *):not(
        .gform-theme__disable-framework
      ):not(.gform-theme__disable-framework *)
  ),
#gform_wrapper_3 .gform_validation_errors:focus,
#gform_wrapper_3 .gform_validation_errors .gform_submission_error,
#gform_wrapper_3 .gform_validation_errors ol,
#gform_wrapper_3 .gform_validation_errors ol a {
  color: #fff !important;
  font-size: 1.5rem;
}

/* ================
   RESPONSIVE
   ================ */

@media (max-width: 960px) {
  .partnership-content-inner,
  .partnership-join-inner {
    flex-direction: column;
  }

  .partnership-content-left,
  .partnership-content-right,
  .join-left,
  .join-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .partnership-content-inner {
    flex-direction: column;
  }

  .partnership-content-left,
  .partnership-content-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .partnership-content-right {
    min-height: 200px;
  }

  .join-right {
    justify-content: flex-start;
  }

  .join-right #gform_wrapper_3 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .partnership-hero-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }

  .partnership-hero-title {
    font-size: 2.5rem;
    line-height: 0;
  }

  .partnership-content-title {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #fff;
  }

  .partnership-content-right {
    min-height: 50vh;
  }

  .partnership-hero-subtitle {
    font-size: 1.3rem;
    margin: 0 0 1.8rem;
  }

  .partnership-accordion-section .value-title {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .partnership-accordion-section {
    padding: 2rem 0;
  }

  .partnership-join {
    padding: 30px 0 80px;
  }

  .partnership-copy {
    font-size: 1rem;
    line-height: 1.8;
  }

  .partnership-accordion-section .value-content {
    font-size: 1rem;
  }

  .join-title {
    font-size: 2.5rem;
    color: #fff;
  }

  .join-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  #gform_wrapper_3 .gform_title {
    font-size: 1.5rem;
  }

  #gform_wrapper_3 .gform_footer input[type="submit"] {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .join-right #gform_wrapper_3 {
    padding: 0px 0px 28px;
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .partnership-hero-inner {
    padding: 90px 16px 60px;
  }

  .partnership-hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
