.proje-content {
    display: flex;
    gap: 30px;
}

/* SAĞ İÇERİK */
.proje-right-content {
    flex: 1;
}

/* TAB CONTAINER */
.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    padding-top: 100px

}








/* FORM + IMAGE LAYOUT */
.form-layout {
    display: flex;
    align-items: center;   /* dikey ortalama */
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

/* FORM (ALT ALTA) */
.form-layout form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    max-width: auto;
}

/* INPUT / TEXTAREA */
input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    width: 100%;
}

textarea {
    min-height: 150px;
}

/* BUTTON */
button {
    padding: 12px;
    background: #f39c12;
    color: #fff;
    border: none;
    cursor: pointer;
    
}
button:hover {
    background: #1a5edb;
}

/* IMAGE SADECE SAĞDA */
.form-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-image img {
    max-width: 50%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* MOBİL UYMLU HALİDİR */

@media (max-width: 768px) {

  /* =====================
     GENEL LAYOUT
  ===================== */
  .proje-content {
    flex-direction: column;
  }

  .tab-content.active {
    margin-top: 0;
    min-height: auto;
    padding: 20px 12px;
  }

  /* =====================
     FORM LAYOUT
  ===================== */
  .form-layout {
    position: relative;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  /* FORM */
  .form-layout form {
    width: 100%;
    max-width: 100%;
  }

  input,
  textarea {
    font-size: 14px;
    width: 100%;
  }

  textarea {
    min-height: 120px;
  }

  button {
    width: 100%;
    font-size: 14px;
  }

  /* =====================
     IMAGE (SAĞ ÜST KÜÇÜK OVERLAY)
  ===================== */
  .form-image {
    position: absolute;
    top: -80px;
    right: 0;

    width: 150px;
    height: auto;

    display: flex;
    justify-content: flex-end;
    align-items: flex-start;

    z-index: 2;
    opacity: 0.9;
  }

  .form-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* FORM İLE ÇAKIŞMAYI ÖNLE */
  input,
  textarea {
    padding-right: 70px;
  }
}