/* ==========================================================================
   Eş Başkanlara Mesaj Gönder — Split Form Layout
   ========================================================================== */

.inner-page__content--message {
  padding-bottom: 48px !important;
}

.president-message {
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 74, 153, 0.1);
  background: #fff;
  min-height: 560px;
}

/* ── Sol panel ─────────────────────────────────────────────────────────── */

.president-message__aside {
  flex: 0 0 36%;
  max-width: 36%;
  background: linear-gradient(160deg, #003d6b 0%, #005a8a 45%, #007896 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.president-message__aside::before,
.president-message__aside::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.president-message__aside::before {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -100px;
}

.president-message__aside::after {
  width: 200px;
  height: 200px;
  bottom: 60px;
  left: -60px;
}

.president-message__aside-inner {
  position: relative;
  z-index: 1;
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.president-message__photo {
  width: 100%;
  max-width: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.president-message__photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: rgba(255, 255, 255, 0.06);
}

.president-message__names {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.president-message__role {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.75;
  margin: 0 0 28px;
}

.president-message__aside-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
}

.president-message__aside-text {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.82;
  margin: 0 0 32px;
}

.president-message__nav {
  margin-top: auto;
}

.president-message__nav-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.55;
  margin-bottom: 14px;
}

.president-message__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.president-message__nav li {
  margin-bottom: 8px;
}

.president-message__nav li:last-child {
  margin-bottom: 0;
}

.president-message__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.president-message__nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.president-message__nav li.is-current a {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 700;
}

.president-message__nav-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.president-message__nav li.is-current .president-message__nav-icon {
  background: rgba(255, 255, 255, 0.22);
}

.president-message__nav-text {
  flex: 1;
  min-width: 0;
}

/* ── Sağ panel — form ──────────────────────────────────────────────────── */

.president-message__form-wrap {
  flex: 1;
  padding: 36px 40px 40px;
  min-width: 0;
}

.president-message__form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.president-message__form-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 74, 153, 0.08);
  color: var(--ed-primary, #004A99);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.president-message__form-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a2b3c;
  margin: 0;
  line-height: 1.3;
}

.president-message__form-subtitle {
  font-size: 12px;
  color: #8a9db0;
  margin: 2px 0 0;
}

.president-message__form-intro {
  font-size: 13px;
  color: #7a93a9;
  line-height: 1.65;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef2f6;
}

.president-message__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.president-message__field label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #5e788f;
  margin-bottom: 8px;
}

.president-message__field label i {
  font-size: 12px;
  color: #8a9db0;
  width: 14px;
  text-align: center;
}

.president-message__field input,
.president-message__field textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  padding: 13px 16px;
  font-size: 14px;
  color: #1a2b3c;
  font-family: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.president-message__field input::placeholder,
.president-message__field textarea::placeholder {
  color: #a0aec0;
}

.president-message__field input:focus,
.president-message__field textarea:focus {
  outline: none;
  border-color: var(--ed-primary, #004A99);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.08);
}

.president-message__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.president-message__textarea-wrap {
  position: relative;
}

.president-message__field textarea {
  min-height: 140px;
  resize: vertical;
  padding-bottom: 32px;
}

.president-message__char-count {
  position: absolute;
  right: 14px;
  bottom: 10px;
  font-size: 11px;
  color: #a0aec0;
  pointer-events: none;
}

.president-message__field--captcha {
  display: flex;
  justify-content: flex-start;
}

.president-message__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 6px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #5a8fa8 0%, #4a7d96 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.president-message__submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.president-message__submit:active {
  transform: translateY(0);
}

.president-message__submit i {
  font-size: 14px;
}

/* ── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 991px) {
  .president-message {
    flex-direction: column;
    min-height: auto;
  }

  .president-message__aside {
    flex: none;
    max-width: 100%;
  }

  .president-message__aside-inner {
    padding: 28px 24px;
  }

  .president-message__nav {
    margin-top: 24px;
  }

  .president-message__form-wrap {
    padding: 28px 24px 32px;
  }
}

@media (max-width: 575px) {
  .president-message__field-row {
    grid-template-columns: 1fr;
  }

  .inner-page__content--message {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
